[
  {
    "path": ".clang-format",
    "content": "Language: Cpp\nBasedOnStyle: LLVM\n\nIndentWidth: 4\nContinuationIndentWidth: 4\nColumnLimit: 80\n\nAlwaysBreakBeforeMultilineStrings: true\nAllowShortFunctionsOnASingleLine: Empty\nAlignConsecutiveMacros: true\nAlignAfterOpenBracket: AlwaysBreak\n\nStatementMacros:\n  [\n    \"vfunc99\",\n    \"vfuncDefault99\",\n    \"DEF_TEST_PARSE\",\n    \"NAL_HEADER_DERIVE_GETTER\",\n    \"NAL_HEADER_DERIVE_PREDICATE\",\n    \"NAL_HEADER_TEST_GETTER\",\n  ]\n"
  },
  {
    "path": ".github/workflows/c-cpp.yml",
    "content": "name: C/C++ CI\n\non:\n  push:\n    branches: [master]\n  pull_request:\n    branches: [master]\n\njobs:\n  test:\n    strategy:\n      matrix:\n        compiler: [gcc, clang]\n\n    runs-on: ubuntu-latest\n    env:\n      CC: ${{ matrix.compiler }}\n\n    steps:\n      - uses: actions/checkout@v2\n\n      - name: Install CMake and Clang\n        run: sudo apt update && sudo apt install -y cmake\n\n      - name: Install Clang\n        if: matrix.compiler == 'clang'\n        run: sudo apt install -y clang\n\n      - name: Tests\n        run: bash scripts/test.sh\n\n  test-server:\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v2\n\n      - name: Install libevent, CMake, FFMpeg\n        run: sudo apt update && sudo apt install -y libevent-dev cmake ffmpeg xxd\n\n      - name: Test the example server\n        run: sudo bash scripts/test-server.sh\n\n  check-fmt:\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: Install libevent\n        run: sudo apt update && sudo apt install -y clang-format\n\n      - name: Download run-clang-format\n        run: git submodule update --init run-clang-format\n\n      - name: Check code formatting\n        run: bash scripts/check-fmt.sh\n\n  deploy-docs:\n    runs-on: ubuntu-latest\n\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: Install Doxygen\n        run: sudo apt update && sudo apt install -y doxygen graphviz\n\n      - name: Build the docs\n        run: bash scripts/docs.sh\n\n      - name: Deploy the docs\n        if: ${{ !env.ACT && github.event_name != 'pull_request' }}\n        uses: peaceiris/actions-gh-pages@v4\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          publish_dir: ./docs/\n"
  },
  {
    "path": ".gitignore",
    "content": "# Prerequisites\n*.d\n\n# Object files\n*.o\n*.ko\n*.obj\n*.elf\n\n# Linker output\n*.ilk\n*.map\n*.exp\n\n# Precompiled Headers\n*.gch\n*.pch\n\n# Libraries\n*.lib\n*.a\n*.la\n*.lo\n\n# Shared objects (inc. Windows DLLs)\n*.dll\n*.so\n*.so.*\n*.dylib\n\n# Executables\n*.exe\n*.out\n*.app\n*.i*86\n*.x86_64\n*.hex\n\n# Debug files\n*.dSYM/\n*.su\n*.idb\n*.pdb\n\n# Kernel Module Compile Results\n*.mod*\n*.cmd\n.tmp_versions/\nmodules.order\nModule.symvers\nMkfile.old\ndkms.conf\n\n# CMake build files\nbuild/\n\n# Doxygen\ndocs/\n"
  },
  {
    "path": ".gitmodules",
    "content": "[submodule \"run-clang-format\"]\n\tpath = run-clang-format\n\turl = https://github.com/Sarcasm/run-clang-format.git\n"
  },
  {
    "path": ".mailmap",
    "content": "hirrolot <hirrolot@gmail.com>\n"
  },
  {
    "path": ".nojekyll",
    "content": ""
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Changelog\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n\n## unreleased\n\n### Fixed\n\n - Update the minimum required CMake version to 3.10.0 due to deprecation (see [metalang99/issues/33](https://github.com/hirrolot/metalang99/issues/33)).\n\n### Fixed\n\n - Fix the `SmolRTSP_NalTransportConfig_default` value for H.265 ([PR #17](https://github.com/OpenIPC/smolrtsp/pull/17)).\n\n## 0.1.3 - 2023-03-12\n\n### Fixed\n\n - Fix the `DOWNLOAD_EXTRACT_TIMESTAMP` CMake warning (see [datatype99/issues/15](https://github.com/hirrolot/datatype99/issues/15)).\n\n## 0.1.2 - 2022-07-27\n\n### Fixed\n\n - Suppress a compilation warning for an unused variable in `smolrtsp_vheader`.\n - Overflow while computing an RTP timestamp.\n\n## 0.1.1 - 2022-03-31\n\n### Fixed\n\n - Mark the following functions with `__attribute__((warn_unused_result))` (when available):\n   - `SmolRTSP_ParseError_print`.\n   - `SmolRTSP_MessageBody_empty`.\n   - `SmolRTSP_Request_uninit`.\n   - `SmolRTSP_Response_uninit`.\n   - `SmolRTSP_NalTransportConfig_default`.\n   - `smolrtsp_determine_start_code`.\n   - `smolrtsp_dgram_socket`.\n\n## 0.1.0 - 2022-03-30\n\n### Added\n\n - This awesome library.\n"
  },
  {
    "path": "CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.16)\nproject(smolrtsp LANGUAGES C)\n\n# Fix the warnings about `DOWNLOAD_EXTRACT_TIMESTAMP` in newer CMake versions.\nif (CMAKE_VERSION VERSION_GREATER_EQUAL \"3.24.0\")\n    cmake_policy(SET CMP0135 NEW)\nendif()\n\noption(SMOLRTSP_SHARED \"Build a shared library\" OFF)\noption(SMOLRTSP_FULL_MACRO_EXPANSION \"Show full macro expansion backtraces\" OFF)\n\ninclude(FetchContent)\n\nFetchContent_Declare(\n  slice99\n  URL https://github.com/hirrolot/slice99/archive/refs/tags/v0.7.8.tar.gz\n)\n\nFetchContent_Declare(\n  metalang99\n  URL https://github.com/hirrolot/metalang99/archive/refs/tags/v1.13.5.tar.gz\n)\n\nFetchContent_Declare(\n  datatype99\n  URL https://github.com/hirrolot/datatype99/archive/refs/tags/v1.6.5.tar.gz\n)\n\nFetchContent_Declare(\n  interface99\n  URL https://github.com/hirrolot/interface99/archive/refs/tags/v1.0.2.tar.gz\n)\n\nFetchContent_MakeAvailable(slice99 datatype99 interface99)\n\nset(SMOLRTSP_SOURCES\n    include/smolrtsp/types/error.h\n    include/smolrtsp/types/header_map.h\n    include/smolrtsp/types/header.h\n    include/smolrtsp/types/message_body.h\n    include/smolrtsp/types/method.h\n    include/smolrtsp/types/reason_phrase.h\n    include/smolrtsp/types/request_line.h\n    include/smolrtsp/types/request_uri.h\n    include/smolrtsp/types/request.h\n    include/smolrtsp/types/response_line.h\n    include/smolrtsp/types/response.h\n    include/smolrtsp/types/rtsp_version.h\n    include/smolrtsp/types/status_code.h\n    include/smolrtsp/types/sdp.h\n    include/smolrtsp/types/rtp.h\n    include/smolrtsp/nal/h264.h\n    include/smolrtsp/nal/h265.h\n    include/smolrtsp/nal.h\n    include/smolrtsp/writer.h\n    include/smolrtsp/util.h\n    include/smolrtsp/transport.h\n    include/smolrtsp/rtp_transport.h\n    include/smolrtsp/nal_transport.h\n    include/smolrtsp/droppable.h\n    include/smolrtsp/controller.h\n    include/smolrtsp/io_vec.h\n    include/smolrtsp/context.h\n    include/smolrtsp/option.h\n    src/types/error.c\n    src/types/header_map.c\n    src/types/header.c\n    src/types/message_body.c\n    src/types/method.c\n    src/types/parsing.c\n    src/types/parsing.h\n    src/types/reason_phrase.c\n    src/types/request_line.c\n    src/types/request_uri.c\n    src/types/request.c\n    src/types/response_line.c\n    src/types/response.c\n    src/types/rtsp_version.c\n    src/types/status_code.c\n    src/types/sdp.c\n    src/types/rtp.c\n    src/nal/h264.c\n    src/nal/h265.c\n    src/nal.c\n    src/writer.c\n    src/writer/fd.c\n    src/writer/file.c\n    src/writer/string.c\n    src/util.c\n    src/transport/tcp.c\n    src/transport/udp.c\n    src/rtp_transport.c\n    src/nal_transport.c\n    src/io_vec.c\n    src/controller.c\n    src/context.c\n    src/macros.h\n)\n\nif(SMOLRTSP_SHARED)\n  add_library(${PROJECT_NAME} SHARED ${SMOLRTSP_SOURCES})\nelse()\n  add_library(${PROJECT_NAME} STATIC ${SMOLRTSP_SOURCES})\nendif()\n\nif(CMAKE_C_COMPILER_ID STREQUAL \"Clang\")\n  target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra)\nelseif(CMAKE_C_COMPILER_ID STREQUAL \"GNU\")\n  target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Wextra -Wno-misleading-indentation)\nendif()\n\nif(NOT SMOLRTSP_FULL_MACRO_EXPANSION)\n  if(CMAKE_C_COMPILER_ID STREQUAL \"Clang\")\n    target_compile_options(${PROJECT_NAME} PUBLIC -fmacro-backtrace-limit=1)\n  elseif(CMAKE_C_COMPILER_ID STREQUAL \"GNU\")\n    target_compile_options(${PROJECT_NAME} PUBLIC -ftrack-macro-expansion=0)\n  endif()\nendif()\n\n# Precompile headers that use Datatype99/Interface99.\ntarget_precompile_headers(\n  ${PROJECT_NAME} PRIVATE\n  include/smolrtsp/types/error.h\n  include/smolrtsp/nal/h264.h\n  include/smolrtsp/nal/h265.h\n  include/smolrtsp/nal.h\n  include/smolrtsp/writer.h\n  include/smolrtsp/transport.h\n  include/smolrtsp/droppable.h\n  include/smolrtsp/controller.h\n  include/smolrtsp/rtp_transport.h\n  include/smolrtsp/util.h)\n\ntarget_include_directories(${PROJECT_NAME} PUBLIC include)\ntarget_link_libraries(${PROJECT_NAME} PUBLIC slice99 metalang99 datatype99 interface99)\n\nset_target_properties(${PROJECT_NAME} PROPERTIES C_STANDARD 99 C_STANDARD_REQUIRED ON)\n"
  },
  {
    "path": "Doxyfile",
    "content": "# Doxyfile 1.8.13\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 double hash (##) is considered a comment and is placed in\n# front of the TAG it is preceding.\n#\n# All text after a single 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 text\n# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv\n# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv\n# for the list of possible encodings.\n# The default value is: UTF-8.\n\nDOXYFILE_ENCODING      = UTF-8\n\n# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by\n# double-quotes, unless you are using Doxywizard) that should identify the\n# project for which the documentation is generated. This name is used in the\n# title of most generated pages and in a few other places.\n# The default value is: My Project.\n\nPROJECT_NAME           = \"SmolRTSP\"\n\n# The PROJECT_NUMBER tag can be used to enter a project or revision number. This\n# could be handy for archiving the generated documentation or if some version\n# control system is used.\n\nPROJECT_NUMBER         = 0.1.3\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 a\n# quick idea about the purpose of the project. Keep the description short.\n\nPROJECT_BRIEF          = \"A small, portable, extensible RTSP 1.0 implementation in C99\"\n\n# With the PROJECT_LOGO tag one can specify a logo or an icon that is included\n# in the documentation. The maximum height of the logo should not exceed 55\n# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy\n# the logo to the output directory.\n\nPROJECT_LOGO           =\n\n# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path\n# into which the generated documentation will be written. If a relative path is\n# entered, it will be relative to the location where doxygen was started. If\n# 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 4096 sub-\n# directories (in 2 levels) under the output directory of each output format and\n# will distribute the generated files over these directories. Enabling this\n# option can be useful when feeding doxygen a huge amount of source files, where\n# putting all generated files in the same directory would otherwise causes\n# performance problems for the file system.\n# The default value is: NO.\n\nCREATE_SUBDIRS         = NO\n\n# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII\n# characters to appear in the names of generated files. If set to NO, non-ASCII\n# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode\n# U+3044.\n# The default value is: NO.\n\nALLOW_UNICODE_NAMES    = 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# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,\n# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),\n# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,\n# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),\n# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,\n# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,\n# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,\n# Ukrainian and Vietnamese.\n# The default value is: English.\n\nOUTPUT_LANGUAGE        = English\n\n# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member\n# descriptions after the members that are listed in the file and class\n# documentation (similar to Javadoc). Set to NO to disable this.\n# The default value is: YES.\n\nBRIEF_MEMBER_DESC      = YES\n\n# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief\n# description of a member or function before the detailed description\n#\n# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the\n# brief descriptions will be completely suppressed.\n# The default value is: YES.\n\nREPEAT_BRIEF           = YES\n\n# This tag implements a quasi-intelligent brief description abbreviator that is\n# used to form the text in various listings. Each string in this list, if found\n# as the leading text of the brief description, will be stripped from the text\n# and the result, after processing the whole list, is used as the annotated\n# text. Otherwise, the brief description is used as-is. If left blank, the\n# following values are used ($name is automatically replaced with the name of\n# the entity):The $name class, The $name widget, The $name file, is, provides,\n# specifies, contains, represents, a, an and 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# The default value is: NO.\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# The default value is: NO.\n\nINLINE_INHERITED_MEMB  = NO\n\n# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path\n# before files name in the file list and in the header files. If set to NO the\n# shortest path that makes the file name unique will be used\n# The default value is: YES.\n\nFULL_PATH_NAMES        = YES\n\n# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.\n# Stripping is only done if one of the specified strings matches the left-hand\n# part of 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 path to\n# strip.\n#\n# Note that you can specify absolute paths here, but also relative paths, which\n# will be relative from the directory where doxygen is started.\n# This tag requires that the tag FULL_PATH_NAMES is set to YES.\n\nSTRIP_FROM_PATH        =\n\n# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the\n# path mentioned in the documentation of a class, which tells the reader which\n# header file to include in order to use a class. If left blank only the name of\n# the header file containing the class definition is used. Otherwise one should\n# specify the list of include paths that are normally passed to the compiler\n# 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 (but\n# less readable) file names. This can be useful is your file systems doesn't\n# support long names like on DOS, Mac, or CD-ROM.\n# The default value is: NO.\n\nSHORT_NAMES            = NO\n\n# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the\n# first line (until the first dot) of a Javadoc-style comment as the brief\n# description. If set to NO, the Javadoc-style will behave just like regular Qt-\n# style comments (thus requiring an explicit @brief command for a brief\n# description.)\n# The default value is: NO.\n\nJAVADOC_AUTOBRIEF      = YES\n\n# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first\n# line (until the first dot) of a Qt-style comment as the brief description. If\n# set to NO, the Qt-style will behave just like regular Qt-style comments (thus\n# requiring an explicit \\brief command for a brief description.)\n# The default value is: NO.\n\nQT_AUTOBRIEF           = NO\n\n# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a\n# multi-line C++ special comment block (i.e. a block of //! or /// comments) as\n# a brief description. This used to be the default behavior. The new default is\n# to treat a multi-line C++ comment block as a detailed description. Set this\n# tag to YES if you prefer the old behavior instead.\n#\n# Note that setting this tag to YES also means that rational rose comments are\n# not recognized any more.\n# The default value is: NO.\n\nMULTILINE_CPP_IS_BRIEF = NO\n\n# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the\n# documentation from any documented member that it re-implements.\n# The default value is: YES.\n\nINHERIT_DOCS           = YES\n\n# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new\n# page for each member. If set to NO, the documentation of a member will be part\n# of the file/class/namespace that contains it.\n# The default value is: NO.\n\nSEPARATE_MEMBER_PAGES  = NO\n\n# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen\n# uses this value to replace tabs by spaces in code fragments.\n# Minimum value: 1, maximum value: 16, default value: 4.\n\nTAB_SIZE               = 4\n\n# This tag can be used to specify a number of aliases that act as commands in\n# the documentation. An alias has the form:\n# name=value\n# For example adding\n# \"sideeffect=@par Side Effects:\\n\"\n# will allow you to put the command \\sideeffect (or @sideeffect) in the\n# documentation, which will result in a user-defined paragraph with heading\n# \"Side Effects:\". You can put \\n's in the value part of an alias to insert\n# 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 \"class=itcl::class\"\n# will allow you to use the command class in the itcl::class meaning.\n\nTCL_SUBST              =\n\n# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources\n# only. Doxygen will then generate output that is more tailored for C. For\n# instance, some of the names that are used will be different. The list of all\n# members will be omitted, etc.\n# The default value is: NO.\n\nOPTIMIZE_OUTPUT_FOR_C  = YES\n\n# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or\n# Python sources only. Doxygen will then generate output that is more tailored\n# for that language. For instance, namespaces will be presented as packages,\n# qualified scopes will look different, etc.\n# The default value is: NO.\n\nOPTIMIZE_OUTPUT_JAVA   = NO\n\n# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran\n# sources. Doxygen will then generate output that is tailored for Fortran.\n# The default value is: NO.\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 VHDL.\n# The default value is: NO.\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, and\n# language is one of the parsers supported by doxygen: IDL, Java, Javascript,\n# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:\n# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran:\n# Fortran. In the later case the parser tries to guess whether the code is fixed\n# or free formatted code, this is the default for Fortran type files), VHDL. For\n# instance to make doxygen treat .inc files as Fortran files (default is PHP),\n# and .f files as C (default is Fortran), use: inc=Fortran f=C.\n#\n# Note: For files without extension you can use no_extension as a placeholder.\n#\n# Note that for custom extensions you also need to set FILE_PATTERNS otherwise\n# the files are not read by doxygen.\n\nEXTENSION_MAPPING      =\n\n# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments\n# 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 can\n# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in\n# case of backward compatibilities issues.\n# The default value is: YES.\n\nMARKDOWN_SUPPORT       = YES\n\n# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up\n# to that level are automatically included in the table of contents, even if\n# they do not have an id attribute.\n# Note: This feature currently applies only to Markdown headings.\n# Minimum value: 0, maximum value: 99, default value: 0.\n# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.\n\nTOC_INCLUDE_HEADINGS   = 0\n\n# When enabled doxygen tries to link words that correspond to documented\n# classes, or namespaces to their corresponding documentation. Such a link can\n# be prevented in individual cases by putting a % sign in front of the word or\n# globally by setting AUTOLINK_SUPPORT to NO.\n# The default value is: YES.\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 set this\n# tag to YES in order to let doxygen match functions declarations and\n# definitions whose arguments contain STL classes (e.g. func(std::string);\n# versus func(std::string) {}). This also make the inheritance and collaboration\n# diagrams that involve STL classes more complete and accurate.\n# The default value is: NO.\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# The default value is: NO.\n\nCPP_CLI_SUPPORT        = NO\n\n# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:\n# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen\n# will parse them like normal C++ but will assume all classes use public instead\n# of private inheritance when no explicit protection keyword is present.\n# The default value is: NO.\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 will make\n# doxygen to replace the get and set methods by a property in the documentation.\n# This will only work if the methods are indeed getting or setting a simple\n# type. If this is not the case, or you want to show the methods anyway, you\n# should set this option to NO.\n# The default value is: YES.\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# The default value is: NO.\n\nDISTRIBUTE_GROUP_DOC   = NO\n\n# If one adds a struct or class to a group and this option is enabled, then also\n# any nested class or struct is added to the same group. By default this option\n# is disabled and one has to add nested compounds explicitly via \\ingroup.\n# The default value is: NO.\n\nGROUP_NESTED_COMPOUNDS = NO\n\n# Set the SUBGROUPING tag to YES to allow class member groups of the same type\n# (for instance a group of public functions) to be put as a subgroup of that\n# type (e.g. under the Public Functions section). Set it to NO to prevent\n# subgrouping. Alternatively, this can be done per class using the\n# \\nosubgrouping command.\n# The default value is: YES.\n\nSUBGROUPING            = YES\n\n# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions\n# are shown inside the group in which they are included (e.g. using \\ingroup)\n# instead of on a separate page (for HTML and Man pages) or section (for LaTeX\n# and RTF).\n#\n# Note that this feature does not work in combination with\n# SEPARATE_MEMBER_PAGES.\n# The default value is: NO.\n\nINLINE_GROUPED_CLASSES = NO\n\n# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions\n# with only public data fields or simple typedef fields will be shown inline in\n# the documentation of the scope in which they are defined (i.e. file,\n# namespace, or group documentation), provided this scope is documented. If set\n# to NO, structs, classes, and unions are shown on a separate page (for HTML and\n# Man pages) or section (for LaTeX and RTF).\n# The default value is: NO.\n\nINLINE_SIMPLE_STRUCTS  = NO\n\n# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or\n# enum 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 be\n# 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# The default value is: NO.\n\nTYPEDEF_HIDES_STRUCT   = NO\n\n# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This\n# cache is used to resolve symbols given their name and scope. Since this can be\n# an expensive process and often the same symbol appears multiple times in the\n# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small\n# doxygen will become slower. If the cache is too large, memory is wasted. The\n# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range\n# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536\n# symbols. At the end of a run doxygen will report the cache usage and suggest\n# the optimal cache size from a speed point of view.\n# Minimum value: 0, maximum value: 9, default value: 0.\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. Private\n# class members and static file members will be hidden unless the\n# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.\n# Note: This will also disable the warnings about undocumented members that are\n# normally produced when WARNINGS is set to YES.\n# The default value is: NO.\n\nEXTRACT_ALL            = NO\n\n# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will\n# be included in the documentation.\n# The default value is: NO.\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# The default value is: NO.\n\nEXTRACT_PACKAGE        = NO\n\n# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be\n# included in the documentation.\n# The default value is: NO.\n\nEXTRACT_STATIC         = NO\n\n# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined\n# locally in source files will be included in the documentation. If set to NO,\n# only classes defined in header files are included. Does not have any effect\n# for Java sources.\n# The default value is: YES.\n\nEXTRACT_LOCAL_CLASSES  = YES\n\n# This flag is only useful for Objective-C code. If set to YES, local methods,\n# which are defined in the implementation section but not in the interface are\n# included in the documentation. If set to NO, only methods in the interface are\n# included.\n# The default value is: NO.\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 name of\n# the file that contains the anonymous namespace. By default anonymous namespace\n# are hidden.\n# The default value is: NO.\n\nEXTRACT_ANON_NSPACES   = NO\n\n# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all\n# undocumented members inside documented classes or files. If set to NO these\n# members will be included in the various overviews, but no documentation\n# section is generated. This option has no effect if EXTRACT_ALL is enabled.\n# The default value is: NO.\n\nHIDE_UNDOC_MEMBERS     = NO\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. If set\n# to NO, these classes will be included in the various overviews. This option\n# has no effect if EXTRACT_ALL is enabled.\n# The default value is: NO.\n\nHIDE_UNDOC_CLASSES     = NO\n\n# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend\n# (class|struct|union) declarations. If set to NO, these declarations will be\n# included in the documentation.\n# The default value is: NO.\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. If set to NO, these\n# blocks will be appended to the function's detailed documentation block.\n# The default value is: NO.\n\nHIDE_IN_BODY_DOCS      = NO\n\n# The INTERNAL_DOCS tag determines if documentation that is typed after a\n# \\internal command is included. If the tag is set to NO then the documentation\n# will be excluded. Set it to YES to include the internal documentation.\n# The default value is: NO.\n\nINTERNAL_DOCS          = NO\n\n# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file\n# 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# The default value is: system dependent.\n\nCASE_SENSE_NAMES       = YES\n\n# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with\n# their full class and namespace scopes in the documentation. If set to YES, the\n# scope will be hidden.\n# The default value is: NO.\n\nHIDE_SCOPE_NAMES       = NO\n\n# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will\n# append additional text to a page's title, such as Class Reference. If set to\n# YES the compound reference will be hidden.\n# The default value is: NO.\n\nHIDE_COMPOUND_REFERENCE= NO\n\n# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of\n# the files that are included by a file in the documentation of that file.\n# The default value is: YES.\n\nSHOW_INCLUDE_FILES     = YES\n\n# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each\n# grouped member an include statement to the documentation, telling the reader\n# which file to include in order to use the member.\n# The default value is: NO.\n\nSHOW_GROUPED_MEMB_INC  = NO\n\n# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include\n# files with double quotes in the documentation rather than with sharp brackets.\n# The default value is: NO.\n\nFORCE_LOCAL_INCLUDES   = NO\n\n# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the\n# documentation for inline members.\n# The default value is: YES.\n\nINLINE_INFO            = YES\n\n# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the\n# (detailed) documentation of file and class members alphabetically by member\n# name. If set to NO, the members will appear in declaration order.\n# The default value is: YES.\n\nSORT_MEMBER_DOCS       = YES\n\n# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief\n# descriptions of file, namespace and class members alphabetically by member\n# name. If set to NO, the members will appear in declaration order. Note that\n# this will also influence the order of the classes in the class list.\n# The default value is: NO.\n\nSORT_BRIEF_DOCS        = NO\n\n# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the\n# (brief and detailed) documentation of class members so that constructors and\n# destructors are listed first. If set to NO the constructors will appear in the\n# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.\n# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief\n# member documentation.\n# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting\n# detailed member documentation.\n# The default value is: NO.\n\nSORT_MEMBERS_CTORS_1ST = NO\n\n# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy\n# of group names into alphabetical order. If set to NO the group names will\n# appear in their defined order.\n# The default value is: NO.\n\nSORT_GROUP_NAMES       = NO\n\n# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by\n# fully-qualified names, including namespaces. If set to NO, the class list will\n# be sorted only by class name, 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 alphabetical\n# list.\n# The default value is: NO.\n\nSORT_BY_SCOPE_NAME     = NO\n\n# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper\n# type resolution of all parameters of a function it will reject a match between\n# the prototype and the implementation of a member function even if there is\n# only one candidate or it is obvious which candidate to choose by doing a\n# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still\n# accept a match between prototype and implementation in such cases.\n# The default value is: NO.\n\nSTRICT_PROTO_MATCHING  = NO\n\n# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo\n# list. This list is created by putting \\todo commands in the documentation.\n# The default value is: YES.\n\nGENERATE_TODOLIST      = YES\n\n# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test\n# list. This list is created by putting \\test commands in the documentation.\n# The default value is: YES.\n\nGENERATE_TESTLIST      = YES\n\n# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug\n# list. This list is created by putting \\bug commands in the documentation.\n# The default value is: YES.\n\nGENERATE_BUGLIST       = YES\n\n# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)\n# the deprecated list. This list is created by putting \\deprecated commands in\n# the documentation.\n# The default value is: YES.\n\nGENERATE_DEPRECATEDLIST= YES\n\n# The ENABLED_SECTIONS tag can be used to enable conditional documentation\n# sections, marked by \\if <section_label> ... \\endif and \\cond <section_label>\n# ... \\endcond blocks.\n\nENABLED_SECTIONS       =\n\n# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the\n# initial value of a variable or macro / define can have for it to appear in the\n# documentation. If the initializer consists of more lines than specified here\n# it will be hidden. Use a value of 0 to hide initializers completely. The\n# appearance of the value of individual variables and macros / defines can be\n# controlled using \\showinitializer or \\hideinitializer command in the\n# documentation regardless of this setting.\n# Minimum value: 0, maximum value: 10000, default value: 30.\n\nMAX_INITIALIZER_LINES  = 100\n\n# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at\n# 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# The default value is: YES.\n\nSHOW_USED_FILES        = YES\n\n# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This\n# will remove the Files entry from the Quick Index and from the Folder Tree View\n# (if specified).\n# The default value is: YES.\n\nSHOW_FILES             = YES\n\n# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces\n# page. This will remove the Namespaces entry from the Quick Index and from the\n# Folder Tree View (if specified).\n# The default value 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 the\n# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided\n# by doxygen. Whatever the program writes to standard output is used as the file\n# version. For an example see the documentation.\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. You can\n# optionally specify a file name after the option, if omitted DoxygenLayout.xml\n# will be used as the name of the layout file.\n#\n# Note that if you run doxygen from a directory containing a file called\n# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE\n# tag is left empty.\n\nLAYOUT_FILE            =\n\n# The CITE_BIB_FILES tag can be used to specify one or more bib files containing\n# the reference definitions. This must be a list of .bib files. The .bib\n# extension is automatically appended if omitted. This requires the bibtex tool\n# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info.\n# For LaTeX the style of the bibliography can be controlled using\n# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the\n# search path. See also \\cite for info how to create references.\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 to\n# standard output by doxygen. If QUIET is set to YES this implies that the\n# messages are off.\n# The default value is: NO.\n\nQUIET                  = NO\n\n# The WARNINGS tag can be used to turn on/off the warning messages that are\n# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES\n# this implies that the warnings are on.\n#\n# Tip: Turn warnings on while writing the documentation.\n# The default value is: YES.\n\nWARNINGS               = YES\n\n# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate\n# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag\n# will automatically be disabled.\n# The default value is: YES.\n\nWARN_IF_UNDOCUMENTED   = YES\n\n# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for\n# potential errors in the documentation, such as not documenting some parameters\n# in a documented function, or documenting parameters that don't exist or using\n# markup commands wrongly.\n# The default value is: YES.\n\nWARN_IF_DOC_ERROR      = YES\n\n# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that\n# are documented, but have no documentation for their parameters or return\n# value. If set to NO, doxygen will only warn about wrong or incomplete\n# parameter documentation, but not about the absence of documentation.\n# The default value is: NO.\n\nWARN_NO_PARAMDOC       = NO\n\n# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when\n# a warning is encountered.\n# The default value is: NO.\n\nWARN_AS_ERROR          = NO\n\n# The WARN_FORMAT tag determines the format of the warning messages that doxygen\n# can produce. The string should contain the $file, $line, and $text tags, which\n# will be replaced by the file and line number from which the warning originated\n# and the warning text. Optionally the format may contain $version, which will\n# be replaced by the version of the file (if it could be obtained via\n# FILE_VERSION_FILTER)\n# The default value is: $file:$line: $text.\n\nWARN_FORMAT            = \"$file:$line: $text\"\n\n# The WARN_LOGFILE tag can be used to specify a file to which warning and error\n# messages should be written. If left blank the output is written to standard\n# error (stderr).\n\nWARN_LOGFILE           =\n\n#---------------------------------------------------------------------------\n# Configuration options related to the input files\n#---------------------------------------------------------------------------\n\n# The INPUT tag is 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 with\n# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING\n# Note: If this tag is empty the current directory is searched.\n\nINPUT                  = include \\\n                         include/smolrtsp \\\n                         include/smolrtsp/types \\\n                         include/smolrtsp/nal\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. Doxygen uses\n# libiconv (or the iconv built into libc) for the transcoding. See the libiconv\n# documentation (see: http://www.gnu.org/software/libiconv) for the list of\n# possible encodings.\n# The default value is: UTF-8.\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 patterns (like *.cpp and\n# *.h) to filter out the source-files in the directories.\n#\n# Note that for custom extensions or not directly supported extensions you also\n# need to set EXTENSION_MAPPING for the extension otherwise the files are not\n# read by doxygen.\n#\n# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,\n# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,\n# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,\n# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,\n# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf.\n\nFILE_PATTERNS          = *.c \\\n                         *.cc \\\n                         *.cxx \\\n                         *.cpp \\\n                         *.c++ \\\n                         *.java \\\n                         *.ii \\\n                         *.ixx \\\n                         *.ipp \\\n                         *.i++ \\\n                         *.inl \\\n                         *.idl \\\n                         *.ddl \\\n                         *.odl \\\n                         *.h \\\n                         *.hh \\\n                         *.hxx \\\n                         *.hpp \\\n                         *.h++ \\\n                         *.cs \\\n                         *.d \\\n                         *.php \\\n                         *.php4 \\\n                         *.php5 \\\n                         *.phtml \\\n                         *.inc \\\n                         *.m \\\n                         *.markdown \\\n                         *.md \\\n                         *.mm \\\n                         *.dox \\\n                         *.py \\\n                         *.pyw \\\n                         *.f90 \\\n                         *.f95 \\\n                         *.f03 \\\n                         *.f08 \\\n                         *.f \\\n                         *.for \\\n                         *.tcl \\\n                         *.vhd \\\n                         *.vhdl \\\n                         *.ucf \\\n                         *.qsf\n\n# The RECURSIVE tag can be used to specify whether or not subdirectories should\n# be searched for input files as well.\n# The default value is: NO.\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#\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# The default value is: NO.\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.\n#\n# Note that the wildcards are matched against the file with absolute path, so to\n# exclude all test directories 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#\n# Note that the wildcards are matched against the file with absolute path, so to\n# exclude all test directories use the pattern */test/*\n\nEXCLUDE_SYMBOLS        =\n\n# The EXAMPLE_PATH tag can be used to specify one or more files or directories\n# that contain example code fragments that are included (see the \\include\n# command).\n\nEXAMPLE_PATH           =\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 and\n# *.h) to filter out the source-files in the directories. If left blank all\n# 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 commands\n# irrespective of the value of the RECURSIVE tag.\n# The default value is: NO.\n\nEXAMPLE_RECURSIVE      = NO\n\n# The IMAGE_PATH tag can be used to specify one or more files or directories\n# that contain images that are to be included in the documentation (see the\n# \\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:\n#\n# <filter> <input-file>\n#\n# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the\n# name of an input file. Doxygen will then use the output that the filter\n# program writes to standard output. If FILTER_PATTERNS is specified, this tag\n# will be ignored.\n#\n# Note that the filter must not add or remove lines; it is applied before the\n# code is scanned, but not when the output code is generated. If lines are added\n# or removed, the anchors will not be placed correctly.\n#\n# Note that for custom extensions or not directly supported extensions you also\n# need to set EXTENSION_MAPPING for the extension otherwise the files are not\n# properly processed by doxygen.\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: pattern=filter\n# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how\n# filters are used. If the FILTER_PATTERNS tag is empty or if none of the\n# patterns match the file name, INPUT_FILTER is applied.\n#\n# Note that for custom extensions or not directly supported extensions you also\n# need to set EXTENSION_MAPPING for the extension otherwise the files are not\n# properly processed by doxygen.\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 also be used to filter the input files that are used for\n# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).\n# The default value is: NO.\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) and\n# it is also possible to disable source filtering for a specific pattern using\n# *.ext= (so without naming a filter).\n# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.\n\nFILTER_SOURCE_PATTERNS =\n\n# If the USE_MDFILE_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\n# (index.html). This can be useful if you have a project on for instance GitHub\n# and want to reuse 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 be\n# generated. Documented entities will be cross-referenced with these sources.\n#\n# Note: To get rid of all source code in the generated output, make sure that\n# also VERBATIM_HEADERS is set to NO.\n# The default value is: NO.\n\nSOURCE_BROWSER         = NO\n\n# Setting the INLINE_SOURCES tag to YES will include the body of functions,\n# classes and enums directly into the documentation.\n# The default value is: NO.\n\nINLINE_SOURCES         = NO\n\n# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any\n# special comment blocks from generated source code fragments. Normal C, C++ and\n# Fortran comments will always remain visible.\n# The default value is: YES.\n\nSTRIP_CODE_COMMENTS    = YES\n\n# If the REFERENCED_BY_RELATION tag is set to YES then for each documented\n# function all documented functions referencing it will be listed.\n# The default value is: NO.\n\nREFERENCED_BY_RELATION = NO\n\n# If the REFERENCES_RELATION tag is set to YES then for each documented function\n# all documented entities called/used by that function will be listed.\n# The default value is: NO.\n\nREFERENCES_RELATION    = NO\n\n# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set\n# to YES then the hyperlinks from functions in REFERENCES_RELATION and\n# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will\n# link to the documentation.\n# The default value is: YES.\n\nREFERENCES_LINK_SOURCE = YES\n\n# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the\n# source code will show a tooltip with additional information such as prototype,\n# brief description and links to the definition and documentation. Since this\n# will make the HTML file larger and loading of large files a bit slower, you\n# can opt to disable this feature.\n# The default value is: YES.\n# This tag requires that the tag SOURCE_BROWSER is set to YES.\n\nSOURCE_TOOLTIPS        = YES\n\n# If the USE_HTAGS tag is set to YES then the references to source code will\n# point to the HTML generated by the htags(1) tool instead of doxygen built-in\n# source browser. The htags tool is part of GNU's global source tagging system\n# (see http://www.gnu.org/software/global/global.html). You will need version\n# 4.8.6 or higher.\n#\n# To use it do the following:\n# - Install the latest version of global\n# - Enable SOURCE_BROWSER and USE_HTAGS in the config file\n# - Make sure the INPUT points to the root of the source tree\n# - Run doxygen as normal\n#\n# Doxygen will invoke htags (and that will in turn invoke gtags), so these\n# tools must be available from the command line (i.e. in the search path).\n#\n# The result: instead of the source browser generated by doxygen, the links to\n# source code will now point to the output of htags.\n# The default value is: NO.\n# This tag requires that the tag SOURCE_BROWSER is set to YES.\n\nUSE_HTAGS              = NO\n\n# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a\n# verbatim copy of the header file for each class for which an include is\n# specified. Set to NO to disable this.\n# See also: Section \\class.\n# The default value is: YES.\n\nVERBATIM_HEADERS       = YES\n\n# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the\n# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the\n# cost of reduced performance. This can be particularly helpful with template\n# rich C++ code for which doxygen's built-in parser lacks the necessary type\n# information.\n# Note: The availability of this option depends on whether or not doxygen was\n# generated with the -Duse-libclang=ON option for CMake.\n# The default value is: NO.\n\nCLANG_ASSISTED_PARSING = NO\n\n# If clang assisted parsing is enabled you can provide the compiler with command\n# line options that you would normally use when invoking the compiler. Note that\n# the include paths will already be set by doxygen for the files and directories\n# specified with INPUT and INCLUDE_PATH.\n# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.\n\nCLANG_OPTIONS          =\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 of all\n# compounds will be generated. Enable this if the project contains a lot of\n# classes, structs, unions or interfaces.\n# The default value is: YES.\n\nALPHABETICAL_INDEX     = YES\n\n# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in\n# which the alphabetical index list will be split.\n# Minimum value: 1, maximum value: 20, default value: 5.\n# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.\n\nCOLS_IN_ALPHA_INDEX    = 5\n\n# In case all classes in a project start with a common prefix, all classes will\n# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag\n# can be used to specify a prefix (or a list of prefixes) that should be ignored\n# while generating the index headers.\n# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.\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, doxygen will generate HTML output\n# The default value is: YES.\n\nGENERATE_HTML          = YES\n\n# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it.\n# The default directory is: html.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_OUTPUT            = docs\n\n# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each\n# generated HTML page (for example: .htm, .php, .asp).\n# The default value is: .html.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_FILE_EXTENSION    = .html\n\n# The HTML_HEADER tag can be used to specify a user-defined HTML header file for\n# each generated HTML page. If the tag is left blank doxygen will generate a\n# standard header.\n#\n# To get valid HTML the header file that includes any scripts and style sheets\n# that doxygen needs, which is dependent on the configuration options used (e.g.\n# the setting GENERATE_TREEVIEW). It is highly recommended to start with a\n# default header using\n# doxygen -w html new_header.html new_footer.html new_stylesheet.css\n# YourConfigFile\n# and then modify the file new_header.html. See also section \"Doxygen usage\"\n# for information on how to generate the default header that doxygen normally\n# uses.\n# Note: The header is subject to change so you typically have to regenerate the\n# default header when upgrading to a newer version of doxygen. For a description\n# of the possible markers and block names see the documentation.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_HEADER            =\n\n# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each\n# generated HTML page. If the tag is left blank doxygen will generate a standard\n# footer. See HTML_HEADER for more information on how to generate a default\n# footer and what special commands can be used inside the footer. See also\n# section \"Doxygen usage\" for information on how to generate the default footer\n# that doxygen normally uses.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_FOOTER            =\n\n# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style\n# sheet that is used by each HTML page. It can be used to fine-tune the look of\n# the HTML output. If left blank doxygen will generate a default style sheet.\n# See also section \"Doxygen usage\" for information on how to generate the style\n# sheet that doxygen normally uses.\n# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as\n# it is more robust and this tag (HTML_STYLESHEET) will in the future become\n# obsolete.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_STYLESHEET        =\n\n# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined\n# cascading style sheets that are included after the standard style sheets\n# created by doxygen. Using this option one can overrule certain style aspects.\n# This is preferred over using HTML_STYLESHEET since it does not replace the\n# standard style sheet and is therefore more robust against future updates.\n# Doxygen will copy the style sheet files to the output directory.\n# Note: The order of the extra style sheet files is of importance (e.g. the last\n# style sheet in the list overrules the setting of the previous ones in the\n# list). For an example see the documentation.\n# This tag requires that the tag GENERATE_HTML is set to YES.\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 the\n# files will be copied as-is; there are no commands or markers available.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_EXTRA_FILES       =\n\n# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen\n# will adjust the colors in the style sheet and background images according to\n# this color. Hue is specified as an angle on a colorwheel, see\n# http://en.wikipedia.org/wiki/Hue for more information. For instance the value\n# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300\n# purple, and 360 is red again.\n# Minimum value: 0, maximum value: 359, default value: 220.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_COLORSTYLE_HUE    = 220\n\n# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors\n# in the HTML output. For a value of 0 the output will use grayscales only. A\n# value of 255 will produce the most vivid colors.\n# Minimum value: 0, maximum value: 255, default value: 100.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_COLORSTYLE_SAT    = 100\n\n# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the\n# luminance component of the colors in the HTML output. Values below 100\n# gradually make the output lighter, whereas values above 100 make the output\n# darker. The value divided by 100 is the actual gamma applied, so 80 represents\n# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not\n# change the gamma.\n# Minimum value: 40, maximum value: 240, default value: 80.\n# This tag requires that the tag GENERATE_HTML is set to YES.\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 this\n# to YES can help to show when doxygen was last run and thus if the\n# documentation is up to date.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\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# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_DYNAMIC_SECTIONS  = NO\n\n# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries\n# shown in the various tree structured indices initially; the user can expand\n# and collapse entries dynamically later on. Doxygen will expand the tree to\n# such a level that at most the specified number of entries are visible (unless\n# a fully collapsed tree already exceeds this amount). So setting the number of\n# entries 1 will produce a full collapsed tree by default. 0 is a special value\n# representing an infinite number of entries and will result in a full expanded\n# tree by default.\n# Minimum value: 0, maximum value: 9999, default value: 100.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nHTML_INDEX_NUM_ENTRIES = 100\n\n# If the GENERATE_DOCSET tag is set to YES, additional index files will be\n# generated that can be used as input for Apple's Xcode 3 integrated development\n# environment (see: http://developer.apple.com/tools/xcode/), introduced with\n# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a\n# Makefile in the HTML output directory. Running make will produce the docset in\n# that directory and running make install will install the docset in\n# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at\n# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html\n# for more information.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_DOCSET        = NO\n\n# This tag determines the name of the docset feed. A documentation feed provides\n# an umbrella under which multiple documentation sets from a single provider\n# (such as a company or product suite) can be grouped.\n# The default value is: Doxygen generated docs.\n# This tag requires that the tag GENERATE_DOCSET is set to YES.\n\nDOCSET_FEEDNAME        = \"Doxygen generated docs\"\n\n# This tag specifies a string that should uniquely identify the documentation\n# set bundle. This should be a reverse domain-name style string, e.g.\n# com.mycompany.MyDocSet. Doxygen will append .docset to the name.\n# The default value is: org.doxygen.Project.\n# This tag requires that the tag GENERATE_DOCSET is set to YES.\n\nDOCSET_BUNDLE_ID       = org.doxygen.Project\n\n# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify\n# the documentation publisher. This should be a reverse domain-name style\n# string, e.g. com.mycompany.MyDocSet.documentation.\n# The default value is: org.doxygen.Publisher.\n# This tag requires that the tag GENERATE_DOCSET is set to YES.\n\nDOCSET_PUBLISHER_ID    = org.doxygen.Publisher\n\n# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.\n# The default value is: Publisher.\n# This tag requires that the tag GENERATE_DOCSET is set to YES.\n\nDOCSET_PUBLISHER_NAME  = Publisher\n\n# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three\n# additional HTML index files: index.hhp, index.hhc, and index.hhk. The\n# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop\n# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on\n# Windows.\n#\n# The HTML Help Workshop contains a compiler that can convert all HTML output\n# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML\n# files are now used as the Windows 98 help format, and will replace the old\n# Windows help format (.hlp) on all Windows platforms in the future. Compressed\n# HTML files also contain an index, a table of contents, and you can search for\n# words in the documentation. The HTML workshop also contains a viewer for\n# compressed HTML files.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_HTMLHELP      = NO\n\n# The CHM_FILE tag can be used to specify the file name of the resulting .chm\n# file. You can add a path in front of the file if the result should not be\n# written to the html output directory.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nCHM_FILE               =\n\n# The HHC_LOCATION tag can be used to specify the location (absolute path\n# including file name) of the HTML help compiler (hhc.exe). If non-empty,\n# doxygen will try to run the HTML help compiler on the generated index.hhp.\n# The file has to be specified with full path.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nHHC_LOCATION           =\n\n# The GENERATE_CHI flag controls if a separate .chi index file is generated\n# (YES) or that it should be included in the master .chm file (NO).\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nGENERATE_CHI           = NO\n\n# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)\n# and project file content.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nCHM_INDEX_ENCODING     =\n\n# The BINARY_TOC flag controls whether a binary table of contents is generated\n# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it\n# enables the Previous and Next buttons.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\n\nBINARY_TOC             = NO\n\n# The TOC_EXPAND flag can be set to YES to add extra items for group members to\n# the table of contents of the HTML help documentation and to the tree view.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTMLHELP is set to YES.\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 that\n# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help\n# (.qch) of the generated HTML documentation.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_QHP           = NO\n\n# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify\n# the file name of the resulting .qch file. The path specified is relative to\n# the HTML output folder.\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQCH_FILE               =\n\n# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help\n# Project output. For more information please see Qt Help Project / Namespace\n# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace).\n# The default value is: org.doxygen.Project.\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_NAMESPACE          = org.doxygen.Project\n\n# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt\n# Help Project output. For more information please see Qt Help Project / Virtual\n# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual-\n# folders).\n# The default value is: doc.\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_VIRTUAL_FOLDER     = doc\n\n# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom\n# filter to add. For more information please see Qt Help Project / Custom\n# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-\n# filters).\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_CUST_FILTER_NAME   =\n\n# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the\n# custom filter to add. For more information please see Qt Help Project / Custom\n# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom-\n# filters).\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_CUST_FILTER_ATTRS  =\n\n# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this\n# project's filter section matches. Qt Help Project / Filter Attributes (see:\n# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes).\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHP_SECT_FILTER_ATTRS  =\n\n# The QHG_LOCATION tag can be used to specify the location of Qt's\n# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the\n# generated .qhp file.\n# This tag requires that the tag GENERATE_QHP is set to YES.\n\nQHG_LOCATION           =\n\n# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be\n# generated, together with the HTML files, they form an Eclipse help plugin. To\n# install this plugin and make it available under the help contents menu in\n# Eclipse, the contents of the directory containing the HTML and XML files needs\n# to be copied into the plugins directory of eclipse. The name of the directory\n# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.\n# After copying Eclipse needs to be restarted before the help appears.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\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 this\n# name. Each documentation set should have its own identifier.\n# The default value is: org.doxygen.Project.\n# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.\n\nECLIPSE_DOC_ID         = org.doxygen.Project\n\n# If you want full control over the layout of the generated HTML pages it might\n# be necessary to disable the index and replace it with your own. The\n# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top\n# of each HTML page. A value of NO enables the index and the value YES disables\n# it. Since the tabs in the index contain the same information as the navigation\n# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nDISABLE_INDEX          = NO\n\n# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index\n# structure should be generated to display hierarchical information. If the tag\n# value is set to YES, a side panel will be generated containing a tree-like\n# index structure (just like the one that is generated for HTML Help). For this\n# to work a browser that supports JavaScript, DHTML, CSS and frames is required\n# (i.e. any modern browser). Windows users are probably better off using the\n# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can\n# further fine-tune the look of the index. As an example, the default style\n# sheet generated by doxygen has an example that shows how to put an image at\n# the root of the tree instead of the PROJECT_NAME. Since the tree basically has\n# the same information as the tab index, you could consider setting\n# DISABLE_INDEX to YES when enabling this option.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nGENERATE_TREEVIEW      = YES\n\n# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that\n# doxygen will group on one line in the generated HTML documentation.\n#\n# Note that a value of 0 will completely suppress the enum values from appearing\n# in the overview section.\n# Minimum value: 0, maximum value: 20, default value: 4.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nENUM_VALUES_PER_LINE   = 4\n\n# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used\n# to set the initial width (in pixels) of the frame in which the tree is shown.\n# Minimum value: 0, maximum value: 1500, default value: 250.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nTREEVIEW_WIDTH         = 250\n\n# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to\n# external symbols imported via tag files in a separate window.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nEXT_LINKS_IN_WINDOW    = NO\n\n# Use this tag to change the font size of LaTeX formulas included as images in\n# the HTML documentation. When you change the font size after a successful\n# doxygen run you need to manually remove any form_*.png images from the HTML\n# output directory to force them to be regenerated.\n# Minimum value: 8, maximum value: 50, default value: 10.\n# This tag requires that the tag GENERATE_HTML is set to YES.\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 not\n# supported properly for IE 6.0, but are supported on all modern browsers.\n#\n# Note that when changing this option you need to delete any form_*.png files in\n# the HTML output directory before the changes have effect.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nFORMULA_TRANSPARENT    = YES\n\n# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see\n# http://www.mathjax.org) which uses client side Javascript for the rendering\n# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX\n# installed or if you want to formulas look prettier in the HTML output. When\n# enabled you may also need to install MathJax separately and configure the path\n# to it using the MATHJAX_RELPATH option.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nUSE_MATHJAX            = NO\n\n# When MathJax is enabled you can set the default output format to be used for\n# the MathJax output. See the MathJax site (see:\n# http://docs.mathjax.org/en/latest/output.html) for more details.\n# Possible values are: HTML-CSS (which is slower, but has the best\n# compatibility), NativeMML (i.e. MathML) and SVG.\n# The default value is: HTML-CSS.\n# This tag requires that the tag USE_MATHJAX is set to YES.\n\nMATHJAX_FORMAT         = HTML-CSS\n\n# When MathJax is enabled you need to specify the location relative to the HTML\n# output directory using the MATHJAX_RELPATH option. The destination directory\n# should contain the MathJax.js script. For instance, if the mathjax directory\n# is located at the same level as the HTML output directory, then\n# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax\n# Content Delivery Network so you can quickly see the result without installing\n# MathJax. However, it is strongly recommended to install a local copy of\n# MathJax from http://www.mathjax.org before deployment.\n# The default value is: http://cdn.mathjax.org/mathjax/latest.\n# This tag requires that the tag USE_MATHJAX is set to YES.\n\nMATHJAX_RELPATH        = http://cdn.mathjax.org/mathjax/latest\n\n# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax\n# extension names that should be enabled during MathJax rendering. For example\n# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols\n# This tag requires that the tag USE_MATHJAX is set to YES.\n\nMATHJAX_EXTENSIONS     =\n\n# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces\n# of code that will be used on startup of the MathJax code. See the MathJax site\n# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an\n# example see the documentation.\n# This tag requires that the tag USE_MATHJAX is set to YES.\n\nMATHJAX_CODEFILE       =\n\n# When the SEARCHENGINE tag is enabled doxygen will generate a search box for\n# the HTML output. The underlying search engine uses javascript and DHTML and\n# should work on any modern browser. Note that when using HTML help\n# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)\n# there is already a search function so this one should typically be disabled.\n# For large projects the javascript based search engine can be slow, then\n# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to\n# search using the keyboard; to jump to the search box use <access key> + S\n# (what the <access key> is depends on the OS and browser, but it is typically\n# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down\n# key> to jump into the search results window, the results can be navigated\n# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel\n# the search. The filter options can be selected when the cursor is inside the\n# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>\n# to select a filter and <Enter> or <escape> to activate or cancel the filter\n# option.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_HTML is set to YES.\n\nSEARCHENGINE           = YES\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. There\n# are two flavors of web server based searching depending on the EXTERNAL_SEARCH\n# setting. When disabled, doxygen will generate a PHP script for searching and\n# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing\n# and searching needs to be provided by external tools. See the section\n# \"External Indexing and Searching\" for details.\n# The default value is: NO.\n# This tag requires that the tag SEARCHENGINE is set to YES.\n\nSERVER_BASED_SEARCH    = NO\n\n# When EXTERNAL_SEARCH tag 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 the\n# search results.\n#\n# Doxygen ships with an example indexer (doxyindexer) and search engine\n# (doxysearch.cgi) which are based on the open source search engine library\n# Xapian (see: http://xapian.org/).\n#\n# See the section \"External Indexing and Searching\" for details.\n# The default value is: NO.\n# This tag requires that the tag SEARCHENGINE is set to YES.\n\nEXTERNAL_SEARCH        = NO\n\n# The SEARCHENGINE_URL should point to a search engine hosted by a web server\n# which will return the search results when EXTERNAL_SEARCH is enabled.\n#\n# Doxygen ships with an example indexer (doxyindexer) and search engine\n# (doxysearch.cgi) which are based on the open source search engine library\n# Xapian (see: http://xapian.org/). See the section \"External Indexing and\n# Searching\" for details.\n# This tag requires that the tag SEARCHENGINE is set to YES.\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# The default file is: searchdata.xml.\n# This tag requires that the tag SEARCHENGINE is set to YES.\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# This tag requires that the tag SEARCHENGINE is set to YES.\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 of\n# to a relative location where the documentation can be found. The format is:\n# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...\n# This tag requires that the tag SEARCHENGINE is set to YES.\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, doxygen will generate LaTeX output.\n# The default value is: YES.\n\nGENERATE_LATEX         = NO\n\n# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it.\n# The default directory is: latex.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_OUTPUT           = latex\n\n# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be\n# invoked.\n#\n# Note that when enabling USE_PDFLATEX this option is only used for generating\n# bitmaps for formulas in the HTML output, but not in the Makefile that is\n# written to the output directory.\n# The default file is: latex.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_CMD_NAME         = latex\n\n# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate\n# index for LaTeX.\n# The default file is: makeindex.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nMAKEINDEX_CMD_NAME     = makeindex\n\n# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX\n# documents. This may be useful for small projects and may help to save some\n# trees in general.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nCOMPACT_LATEX          = NO\n\n# The PAPER_TYPE tag can be used to set the paper type that is used by the\n# printer.\n# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x\n# 14 inches) and executive (7.25 x 10.5 inches).\n# The default value is: a4.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nPAPER_TYPE             = a4\n\n# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names\n# that should be included in the LaTeX output. The package can be specified just\n# by its name or with the correct syntax as to be used with the LaTeX\n# \\usepackage command. To get the times font for instance you can specify :\n# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}\n# To use the option intlimits with the amsmath package you can specify:\n# EXTRA_PACKAGES=[intlimits]{amsmath}\n# If left blank no extra packages will be included.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nEXTRA_PACKAGES         =\n\n# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the\n# generated LaTeX document. The header should contain everything until the first\n# chapter. If it is left blank doxygen will generate a standard header. See\n# section \"Doxygen usage\" for information on how to let doxygen write the\n# default header to a separate file.\n#\n# Note: Only use a user-defined header if you know what you are doing! The\n# following commands have a special meaning inside the header: $title,\n# $datetime, $date, $doxygenversion, $projectname, $projectnumber,\n# $projectbrief, $projectlogo. Doxygen will replace $title with the empty\n# string, for the replacement values of the other commands the user is referred\n# to HTML_HEADER.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_HEADER           =\n\n# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the\n# generated LaTeX document. The footer should contain everything after the last\n# chapter. If it is left blank doxygen will generate a standard footer. See\n# LATEX_HEADER for more information on how to generate a default footer and what\n# special commands can be used inside the footer.\n#\n# Note: Only use a user-defined footer if you know what you are doing!\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_FOOTER           =\n\n# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined\n# LaTeX style sheets that are included after the standard style sheets created\n# by doxygen. Using this option one can overrule certain style aspects. Doxygen\n# will copy the style sheet files to the output directory.\n# Note: The order of the extra style sheet files is of importance (e.g. the last\n# style sheet in the list overrules the setting of the previous ones in the\n# list).\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_EXTRA_STYLESHEET =\n\n# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or\n# other source files which should be copied to the LATEX_OUTPUT output\n# directory. Note that the files will be copied as-is; there are no commands or\n# markers available.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_EXTRA_FILES      =\n\n# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is\n# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will\n# contain links (just like the HTML output) instead of page references. This\n# makes the output suitable for online browsing using a PDF viewer.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nPDF_HYPERLINKS         = YES\n\n# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate\n# the PDF file directly from the LaTeX files. Set this option to YES, to get a\n# higher quality PDF documentation.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\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 running\n# if errors occur, instead of asking the user for help. This option is also used\n# when generating formulas in HTML.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_BATCHMODE        = NO\n\n# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the\n# index chapters (such as File Index, Compound Index, etc.) in the output.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_HIDE_INDICES     = NO\n\n# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source\n# code with syntax highlighting in the LaTeX output.\n#\n# Note that which sources are shown also depends on other settings such as\n# SOURCE_BROWSER.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\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. See\n# http://en.wikipedia.org/wiki/BibTeX and \\cite for more info.\n# The default value is: plain.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_BIB_STYLE        = plain\n\n# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated\n# page will contain the date and time when the page was generated. Setting this\n# to NO can help when comparing the output of multiple runs.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_LATEX is set to YES.\n\nLATEX_TIMESTAMP        = NO\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. The\n# RTF output is optimized for Word 97 and may not look too pretty with other RTF\n# readers/editors.\n# The default value is: NO.\n\nGENERATE_RTF           = NO\n\n# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it.\n# The default directory is: rtf.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_OUTPUT             = rtf\n\n# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF\n# documents. This may be useful for small projects and may help to save some\n# trees in general.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nCOMPACT_RTF            = NO\n\n# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will\n# contain hyperlink fields. The RTF file will contain links (just like the HTML\n# output) instead of page references. This makes the output suitable for online\n# browsing using Word or some other Word compatible readers that support those\n# fields.\n#\n# Note: WordPad (write) and others do not support links.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_HYPERLINKS         = NO\n\n# Load stylesheet definitions from file. Syntax is similar to doxygen's config\n# file, i.e. a series of assignments. You only have to provide replacements,\n# missing definitions are set to their default value.\n#\n# See also section \"Doxygen usage\" for information on how to generate the\n# default style sheet that doxygen normally uses.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_STYLESHEET_FILE    =\n\n# Set optional variables used in the generation of an RTF document. Syntax is\n# similar to doxygen's config file. A template extensions file can be generated\n# using doxygen -e rtf extensionFile.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_EXTENSIONS_FILE    =\n\n# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code\n# with syntax highlighting in the RTF output.\n#\n# Note that which sources are shown also depends on other settings such as\n# SOURCE_BROWSER.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_RTF is set to YES.\n\nRTF_SOURCE_CODE        = NO\n\n#---------------------------------------------------------------------------\n# Configuration options related to the man page output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for\n# classes and files.\n# The default value is: NO.\n\nGENERATE_MAN           = NO\n\n# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it. A directory man3 will be created inside the directory specified by\n# MAN_OUTPUT.\n# The default directory is: man.\n# This tag requires that the tag GENERATE_MAN is set to YES.\n\nMAN_OUTPUT             = man\n\n# The MAN_EXTENSION tag determines the extension that is added to the generated\n# man pages. In case the manual section does not start with a number, the number\n# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is\n# optional.\n# The default value is: .3.\n# This tag requires that the tag GENERATE_MAN is set to YES.\n\nMAN_EXTENSION          = .3\n\n# The MAN_SUBDIR tag determines the name of the directory created within\n# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by\n# MAN_EXTENSION with the initial . removed.\n# This tag requires that the tag GENERATE_MAN is set to YES.\n\nMAN_SUBDIR             =\n\n# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it\n# will generate one additional man file for each entity documented in the real\n# man page(s). These additional files only source the real man page, but without\n# them the man command would be unable to find the correct page.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_MAN is set to YES.\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 generate an XML file that\n# captures the structure of the code including all documentation.\n# The default value is: NO.\n\nGENERATE_XML           = NO\n\n# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a\n# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of\n# it.\n# The default directory is: xml.\n# This tag requires that the tag GENERATE_XML is set to YES.\n\nXML_OUTPUT             = xml\n\n# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program\n# listings (including syntax highlighting and cross-referencing information) to\n# the XML output. Note that enabling this will significantly increase the size\n# of the XML output.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_XML is set to YES.\n\nXML_PROGRAMLISTING     = YES\n\n#---------------------------------------------------------------------------\n# Configuration options related to the DOCBOOK output\n#---------------------------------------------------------------------------\n\n# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files\n# that can be used to generate PDF.\n# The default value is: NO.\n\nGENERATE_DOCBOOK       = NO\n\n# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.\n# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in\n# front of it.\n# The default directory is: docbook.\n# This tag requires that the tag GENERATE_DOCBOOK is set to YES.\n\nDOCBOOK_OUTPUT         = docbook\n\n# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the\n# program listings (including syntax highlighting and cross-referencing\n# information) to the DOCBOOK output. Note that enabling this will significantly\n# increase the size of the DOCBOOK output.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_DOCBOOK is set to YES.\n\nDOCBOOK_PROGRAMLISTING = NO\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 generate an\n# AutoGen Definitions (see http://autogen.sf.net) file that captures the\n# structure of the code including all documentation. Note that this feature is\n# still experimental and incomplete at the moment.\n# The default value is: NO.\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 generate a Perl module\n# file that captures the structure of the code including all documentation.\n#\n# Note that this feature is still experimental and incomplete at the moment.\n# The default value is: NO.\n\nGENERATE_PERLMOD       = NO\n\n# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary\n# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI\n# output from the Perl module output.\n# The default value is: NO.\n# This tag requires that the tag GENERATE_PERLMOD is set to YES.\n\nPERLMOD_LATEX          = NO\n\n# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely\n# formatted so it can be parsed by a human reader. This is useful if you want to\n# understand what is going on. On the other hand, if this tag is set to NO, the\n# size of the Perl module output will be much smaller and Perl will parse it\n# just the same.\n# The default value is: YES.\n# This tag requires that the tag GENERATE_PERLMOD is set to YES.\n\nPERLMOD_PRETTY         = YES\n\n# The names of the make variables in the generated doxyrules.make file are\n# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful\n# so different doxyrules.make files included by the same Makefile don't\n# overwrite each other's variables.\n# This tag requires that the tag GENERATE_PERLMOD is set to YES.\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, doxygen will evaluate all\n# C-preprocessor directives found in the sources and include files.\n# The default value is: YES.\n\nENABLE_PREPROCESSING   = YES\n\n# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names\n# in the source code. If set to NO, only conditional compilation will be\n# performed. Macro expansion can be done in a controlled way by setting\n# EXPAND_ONLY_PREDEF to YES.\n# The default value is: NO.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nMACRO_EXPANSION        = NO\n\n# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then\n# the macro expansion is limited to the macros specified with the PREDEFINED and\n# EXPAND_AS_DEFINED tags.\n# The default value is: NO.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nEXPAND_ONLY_PREDEF     = NO\n\n# If the SEARCH_INCLUDES tag is set to YES, the include files in the\n# INCLUDE_PATH will be searched if a #include is found.\n# The default value is: YES.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\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 the\n# preprocessor.\n# This tag requires that the tag SEARCH_INCLUDES is set to YES.\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 be\n# used.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nINCLUDE_FILE_PATTERNS  =\n\n# The PREDEFINED tag can be used to specify one or more macro names that are\n# defined before the preprocessor is started (similar to the -D option of e.g.\n# gcc). The argument of the tag is a list of macros of the form: name or\n# name=definition (no spaces). If the definition and the \"=\" are omitted, \"=1\"\n# is assumed. To prevent a macro definition from being undefined via #undef or\n# recursively expanded use the := operator instead of the = operator.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nPREDEFINED             = DOXYGEN_IGNORE\n\n# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this\n# tag can be used to specify a list of macro names that should be expanded. The\n# macro definition that is found in the sources will be used. Use the PREDEFINED\n# tag if you want to use a different macro definition that overrules the\n# definition found in the source code.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nEXPAND_AS_DEFINED      =\n\n# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will\n# remove all references to function-like macros that are alone on a line, have\n# an all uppercase name, and do not end with a semicolon. Such function macros\n# are typically used for boiler-plate code, and will confuse the parser if not\n# removed.\n# The default value is: YES.\n# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.\n\nSKIP_FUNCTION_MACROS   = YES\n\n#---------------------------------------------------------------------------\n# Configuration options related to external references\n#---------------------------------------------------------------------------\n\n# The TAGFILES tag can be used to specify one or more tag files. For each tag\n# file the location of the external documentation should be added. The format of\n# 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 or URLs. See the\n# section \"Linking to external documentation\" for more information about the use\n# of tag files.\n# Note: Each tag file must have a unique name (where the name does NOT include\n# the path). If a tag file is not located in the directory in which doxygen is\n# 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 a\n# tag file that is based on the input files it reads. See section \"Linking to\n# external documentation\" for more information about the usage of tag files.\n\nGENERATE_TAGFILE       =\n\n# If the ALLEXTERNALS tag is set to YES, all external class will be listed in\n# the class index. If set to NO, only the inherited external classes will be\n# listed.\n# The default value is: NO.\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 be\n# listed.\n# The default value is: YES.\n\nEXTERNAL_GROUPS        = YES\n\n# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in\n# the related pages index. If set to NO, only the current project's pages will\n# be listed.\n# The default value is: YES.\n\nEXTERNAL_PAGES         = 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# The default file (with absolute path) is: /usr/bin/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, doxygen will generate a class diagram\n# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to\n# NO turns the diagrams off. Note that this option also works with HAVE_DOT\n# disabled, but it is recommended to install and use dot, since it yields more\n# powerful graphs.\n# The default value is: YES.\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            =\n\n# You can include diagrams made with dia in doxygen documentation. Doxygen will\n# then run dia to produce the diagram and insert it in the documentation. The\n# DIA_PATH tag allows you to specify the directory where the dia binary resides.\n# If left empty dia is assumed to be found in the default search path.\n\nDIA_PATH               =\n\n# If set to YES the inheritance and collaboration graphs will hide inheritance\n# and usage relations if the target is undocumented or is not a class.\n# The default value is: YES.\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 (see:\n# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent\n# Bell Labs. The other options in this section have no effect if this option is\n# set to NO\n# The default value is: YES.\n\nHAVE_DOT               = YES\n\n# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed\n# to run in parallel. When set to 0 doxygen will base this on the number of\n# processors available in the system. You can set it explicitly to a value\n# larger than 0 to get control over the balance between CPU load and processing\n# speed.\n# Minimum value: 0, maximum value: 32, default value: 0.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_NUM_THREADS        = 0\n\n# When you want a differently looking font in the dot files that doxygen\n# generates you can specify the font name using DOT_FONTNAME. You need to make\n# sure dot is able to find the font, which can be done by putting it in a\n# standard location or by setting the DOTFONTPATH environment variable or by\n# setting DOT_FONTPATH to the directory containing the font.\n# The default value is: Helvetica.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_FONTNAME           = Helvetica\n\n# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of\n# dot graphs.\n# Minimum value: 4, maximum value: 24, default value: 10.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_FONTSIZE           = 10\n\n# By default doxygen will tell dot to use the default font as specified with\n# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set\n# the path where dot can find it using this tag.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_FONTPATH           =\n\n# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for\n# each documented class showing the direct and indirect inheritance relations.\n# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nCLASS_GRAPH            = YES\n\n# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a\n# graph for each documented class showing the direct and indirect implementation\n# dependencies (inheritance, containment, and class references variables) of the\n# class with other documented classes.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nCOLLABORATION_GRAPH    = YES\n\n# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for\n# groups, showing the direct groups dependencies.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\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# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nUML_LOOK               = NO\n\n# If the UML_LOOK tag is enabled, the fields and methods are shown inside the\n# class node. If there are many fields or methods and many nodes the graph may\n# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the\n# number of items for each type to make the size more manageable. Set this to 0\n# for no limit. Note that the threshold may be exceeded by 50% before the limit\n# is enforced. So when you set the threshold to 10, up to 15 fields may appear,\n# but if the number exceeds 15, the total amount of fields shown is limited to\n# 10.\n# Minimum value: 0, maximum value: 100, default value: 10.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nUML_LIMIT_NUM_FIELDS   = 10\n\n# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and\n# collaboration graphs will show the relations between templates and their\n# instances.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nTEMPLATE_RELATIONS     = NO\n\n# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to\n# YES then doxygen will generate a graph for each documented file showing the\n# direct and indirect include dependencies of the file with other documented\n# files.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nINCLUDE_GRAPH          = YES\n\n# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are\n# set to YES then doxygen will generate a graph for each documented file showing\n# the direct and indirect include dependencies of the file with other documented\n# files.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nINCLUDED_BY_GRAPH      = YES\n\n# If the CALL_GRAPH tag is set to YES then doxygen will generate a call\n# dependency graph for every global function or class method.\n#\n# Note that enabling this option will significantly increase the time of a run.\n# So in most cases it will be better to enable call graphs for selected\n# functions only using the \\callgraph command. Disabling a call graph can be\n# accomplished by means of the command \\hidecallgraph.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nCALL_GRAPH             = NO\n\n# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller\n# dependency graph for every global function or class method.\n#\n# Note that enabling this option will significantly increase the time of a run.\n# So in most cases it will be better to enable caller graphs for selected\n# functions only using the \\callergraph command. Disabling a caller graph can be\n# accomplished by means of the command \\hidecallergraph.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nCALLER_GRAPH           = NO\n\n# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical\n# hierarchy of all classes instead of a textual one.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nGRAPHICAL_HIERARCHY    = YES\n\n# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the\n# dependencies a directory has on other directories in a graphical way. The\n# dependency relations are determined by the #include relations between the\n# files in the directories.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\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. For an explanation of the image formats see the section\n# output formats in the documentation of the dot tool (Graphviz (see:\n# http://www.graphviz.org/)).\n# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order\n# to make the SVG files visible in IE 9+ (other browsers do not have this\n# requirement).\n# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd,\n# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo,\n# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo,\n# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and\n# png:gdiplus:gdiplus.\n# The default value is: png.\n# This tag requires that the tag HAVE_DOT is set to YES.\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#\n# Note that this requires a modern browser other than Internet Explorer. Tested\n# and working are Firefox, Chrome, Safari, and Opera.\n# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make\n# the SVG files visible. Older versions of IE do not have SVG support.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nINTERACTIVE_SVG        = NO\n\n# The DOT_PATH tag 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# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_PATH               =\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 \\dotfile\n# command).\n# This tag requires that the tag HAVE_DOT is set to YES.\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 \\mscfile\n# command).\n\nMSCFILE_DIRS           =\n\n# The DIAFILE_DIRS tag can be used to specify one or more directories that\n# contain dia files that are included in the documentation (see the \\diafile\n# command).\n\nDIAFILE_DIRS           =\n\n# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the\n# path where java can find the plantuml.jar file. If left blank, it is assumed\n# PlantUML is not used or called during a preprocessing step. Doxygen will\n# generate a warning when it encounters a \\startuml command in this case and\n# will not generate output for the diagram.\n\nPLANTUML_JAR_PATH      =\n\n# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a\n# configuration file for plantuml.\n\nPLANTUML_CFG_FILE      =\n\n# When using plantuml, the specified paths are searched for files specified by\n# the !include statement in a plantuml block.\n\nPLANTUML_INCLUDE_PATH  =\n\n# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes\n# that will be shown in the graph. If the number of nodes in a graph becomes\n# larger than this value, doxygen will truncate the graph, which is visualized\n# by representing a node as a red box. Note that doxygen if the number of direct\n# 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 that\n# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.\n# Minimum value: 0, maximum value: 10000, default value: 50.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_GRAPH_MAX_NODES    = 50\n\n# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs\n# generated by dot. A depth value of 3 means that only nodes reachable from the\n# root by following a path via at most 3 edges will be shown. Nodes that lay\n# further from the root node will be omitted. Note that setting this option to 1\n# or 2 may greatly reduce the computation time needed for large code bases. Also\n# 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# Minimum value: 0, maximum value: 1000, default value: 0.\n# This tag requires that the tag HAVE_DOT is set to YES.\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 seem\n# to support this out of the box.\n#\n# Warning: Depending on the platform used, enabling this option may lead to\n# badly anti-aliased labels on the edges of a graph (i.e. they become hard to\n# read).\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_TRANSPARENT        = NO\n\n# Set the DOT_MULTI_TARGETS tag to YES to 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) support\n# this, this feature is disabled by default.\n# The default value is: NO.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_MULTI_TARGETS      = NO\n\n# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page\n# explaining the meaning of the various boxes and arrows in the dot generated\n# graphs.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nGENERATE_LEGEND        = YES\n\n# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot\n# files that are used to generate the various graphs.\n# The default value is: YES.\n# This tag requires that the tag HAVE_DOT is set to YES.\n\nDOT_CLEANUP            = YES\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2020-2024 OpenIPC\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": "README.md",
    "content": "![OpenIPC Logo](https://cdn.themactep.com/images/logo_openipc.png)\n\n# SmolRTSP\n[![CI](https://github.com/OpenIPC/smolrtsp/workflows/C/C++%20CI/badge.svg)](https://github.com/OpenIPC/smolrtsp/actions)\n[![Docs](https://img.shields.io/badge/docs-latest-blue)](https://openipc.github.io/smolrtsp/)\n\nSmolRTSP is a simple [RTSP 1.0] server library tailored for embedded devices, such as IP cameras. It supports both TCP and UDP, allows any payload format, and provides a convenient and flexible API.\n\n[RTSP 1.0]: https://datatracker.ietf.org/doc/html/rfc2326\n\n## Highlights\n\n - **Small.** SmolRTSP is designed for use in embedded systems (e.g., IP cameras).\n - **Unopinionated.** You can use SmolRTSP with bare POSIX sockets, [libevent], or any other network framework.\n - **Zero-copy.** SmolRTSP does not allocate or copy data while parsing.\n - **Battle-tested.** SmolRTSP is used by [Majestic], an IP camera streamer developed by [OpenIPC].\n\n[libevent]: https://libevent.org/\n[array slices]: https://github.com/hirrolot/slice99\n[Majestic]: https://openipc.github.io/wiki/en/majestic-streamer.html\n[OpenIPC]: https://openipc.org/\n\n## Features\n\n - Supported protocols:\n   - [x] RTSP 1.0 ([RFC 2326])\n   - [x] RTP ([RFC 3550])\n   - [x] RTP over TCP (interleaved binary data)\n   - [x] RTP over UDP\n   - [x] SDP ([RFC 4566])\n   - [ ] RTCP\n - Supported RTP payload formats:\n   - [x] H.264 ([RFC 6184])\n   - [x] H.265 ([RFC 7798])\n\n[RFC 3550]: https://datatracker.ietf.org/doc/html/rfc3550\n[RFC 4566]: https://datatracker.ietf.org/doc/html/rfc4566\n[RFC 2326]: https://datatracker.ietf.org/doc/html/rfc2326\n[RFC 6184]: https://datatracker.ietf.org/doc/html/rfc6184\n[RFC 7798]: https://datatracker.ietf.org/doc/html/rfc7798\n\n## Installation\n\nIf you use CMake, the recommended way is [`FetchContent`]:\n\n[`FetchContent`]: https://cmake.org/cmake/help/latest/module/FetchContent.html\n\n```cmake\ninclude(FetchContent)\n\nFetchContent_Declare(\n    smolrtsp\n    URL https://github.com/OpenIPC/smolrtsp/archive/refs/tags/v1.2.3.tar.gz # v1.2.3\n)\n\nFetchContent_MakeAvailable(smolrtsp)\n\ntarget_link_libraries(MyProject smolrtsp)\n```\n\n### Options\n\n| Option | Description | Default |\n|--------|-------------|---------|\n| `SMOLRTSP_SHARED` | Build a shared library instead of static. | `OFF` |\n| `SMOLRTSP_FULL_MACRO_EXPANSION` | Show full macro expansion backtraces (**DANGEROUS**: may impair diagnostics and slow down compilation). | `OFF` |\n\n## Usage\n\nA simple example server that streams H.264 video and G.711 Mu-Law audio can be found at [`examples/server.c`](examples/server.c).\n\n![server demo](media/example-server-demo.png)\n\nRun it as follows:\n\n```\n$ mkdir examples/build\n$ cd examples/build\n$ cmake .. && cmake --build .\n$ sudo ./server\n```\n\nThen open a new terminal window to start playing:\n\n```\n$ ffplay rtsp://localhost\n```\n\n## Integration\n\nSmolRTSP is agnostic to a network backend: you can run it atop of any network/event loop framework. Currently, we support the following integrations:\n\n - [`OpenIPC/smolrtsp-libevent`](https://github.com/OpenIPC/smolrtsp-libevent) ([libevent](https://libevent.org/))\n\nFeel free to extend this list with your own integration code.\n\n## Release procedure\n\n 1. Update the `PROJECT_NUMBER` field in `Doxyfile`.\n 2. Update `CHANGELOG.md`.\n 3. Release the project in [GitHub Releases].\n\n[GitHub Releases]: https://github.com/OpenIPC/smolrtsp/releases\n"
  },
  {
    "path": "examples/.gitignore",
    "content": "build/\n"
  },
  {
    "path": "examples/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.16)\nproject(examples LANGUAGES C)\n\nadd_subdirectory(.. build)\n\nlist(APPEND CMAKE_MODULE_PATH \"${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules\")\n\nfind_package(LibEvent REQUIRED)\n\ninclude(FetchContent)\n\nFetchContent_Declare(\n    smolrtsp-libevent\n    GIT_REPOSITORY https://github.com/OpenIPC/smolrtsp-libevent.git\n    GIT_TAG 369b1a38688122521552dee6023fcbdb9cf6aa6b\n)\n\nFetchContent_MakeAvailable(smolrtsp-libevent)\n\nadd_executable(server server.c)\n\ntarget_link_libraries(server smolrtsp smolrtsp-libevent ${LIBEVENT_LIBRARIES})\ntarget_include_directories(server PRIVATE ${LIBEVENT_INCLUDE_DIR})\nset_target_properties(server PROPERTIES C_STANDARD 99 C_STANDARD_REQUIRED ON)\n\nif(CMAKE_C_COMPILER_ID STREQUAL \"Clang\")\n  target_compile_options(server PRIVATE -Wall -Wextra -fsanitize=address)\nelseif(CMAKE_C_COMPILER_ID STREQUAL \"GNU\")\n  target_compile_options(server PRIVATE -Wall -Wextra -fsanitize=address -Wno-misleading-indentation)\nendif()\n\ntarget_link_options(server PRIVATE -fsanitize=address)\n\nexecute_process(COMMAND xxd -i ../media/audio.g711a ../media/audio.g711a.h)\nexecute_process(COMMAND xxd -i ../media/video.h264 ../media/video.h264.h)\n"
  },
  {
    "path": "examples/cmake/modules/FindLibEvent.cmake",
    "content": "# - Try to find the LibEvent config processing library\n# Once done this will define\n#\n# LIBEVENT_FOUND - System has LibEvent\n# LIBEVENT_INCLUDE_DIR - the LibEvent include directory\n# LIBEVENT_LIBRARIES - The libraries needed to use LibEvent\nfind_path     (LIBEVENT_INCLUDE_DIR NAMES event.h)\nfind_library  (LIBEVENT_LIBRARY     NAMES event)\nfind_library  (LIBEVENT_CORE        NAMES event_core)\nfind_library  (LIBEVENT_EXTRA       NAMES event_extra)\nif (NOT EVHTP_DISABLE_EVTHR)\n    find_library (LIBEVENT_THREAD   NAMES event_pthreads)\nendif()\nif (NOT EVHTP_DISABLE_SSL)\n    find_library (LIBEVENT_SSL      NAMES event_openssl)\nendif()\ninclude (FindPackageHandleStandardArgs)\nset (LIBEVENT_INCLUDE_DIRS ${LIBEVENT_INCLUDE_DIR})\nset (LIBEVENT_LIBRARIES\n        ${LIBEVENT_LIBRARY}\n        ${LIBEVENT_SSL}\n        ${LIBEVENT_CORE}\n        ${LIBEVENT_EXTRA}\n        ${LIBEVENT_THREAD}\n        ${LIBEVENT_EXTRA})\n    find_package_handle_standard_args (LIBEVENT DEFAULT_MSG LIBEVENT_LIBRARIES LIBEVENT_INCLUDE_DIR)\nmark_as_advanced(LIBEVENT_INCLUDE_DIRS LIBEVENT_LIBRARIES)\n"
  },
  {
    "path": "examples/media/.gitignore",
    "content": "audio.g711a.h\nvideo.h264.h\n"
  },
  {
    "path": "examples/media/audio.g711a",
    "content": "~~~~~~~~~~~~~|zz{~}|}|xvy}yvx|}zz}}xx|zvx}}xuuz|{usvxyyxutw~slgdm}jhogjoefxykizqch{_X^f[fcZad[^xxa^si_ks`\\dl`iv_a~m[Ygk_isbifX[vr^^yb^n}_[he]eracwt][ie_ljbl~b\\dsejhgvf`kmfsthpobhnnlhtlafvjjuxvidmoo{xnnqv}|omry}{xztz}zumjowwyzyztmoyywxreeoyq~tknynegprpx|kkvsdajkdmnbdnh`fxotugkpa`lnhnkjzzhfmyrvyu|hfnlekxiistfemyllq~}nlsra^f|f_cr|ihqzfagzpln}vynlvnhl~rp~slo~sov|w{umpojkr{nlqohisxmikt{xqor}sklxrhfm}kej~nefpojnztx|xnjnojqml{phixqkows|lgkyzibetxgckpecjx{plnx}vyngho{khl}nknsmoz|y~xstzyw||tsypr~}z}yrty|~~vmlo{toowyoklt~zwvzzrry|njkssjkxsln{{njmy~vtwzooy|x~vkjovrx~xttx|xnjkptrw}qkjmw||xtt{}}zxxy{ztnmr~yzvppy~zplmtwqqw{wuw|xwy{|zplmpywtxtmlox|ytpqz{z||{|}tnnr|~{~~vu{}vpow}wtvy~|z}yuw|qlkrztv}wvuqonosxtv~|qnp{{qlkpyru}yzyuqppu~xpoxwnmvyy|xsooxvpwtjgmqow|wz}vnlqy||zy}xsxxmfdjzxw|x{|unms}~z|tjfjw||zwxzzwrqv}~{|wjfit~tuyxz|yrmlpz}z~~rpythchv{op~y{tlimv|sowxicgurpzz|zmikr}|x~vov{h`cpsmrrq}tkimw~xxuw~i`alslp~onyylikr}~yw|}~kbajvnrrnw}mhjq}|y~~lddk~xqytovojjoy~ngejwupxyty}nijoyqjhlwupwy|rjiltxnknyxrv~y}pigkr~~yplms|xruy}rhfio{{qlms|ztw{~xkhjp~}{}xonpsy}zvw}|z}kddjz~wu{}{~uooqv{wssx~}~nihkv|~|}~zuqpt|tlijr~{{}}{yurty|~xlgglu|~|{xvustw{{xywv{|tqsvxsonntypmkkmr~zmiintnmlklmpz}}{vokikq~}toovzyvqmjikx}xoidchsztons}|qkfdfo|wrmihin{zpnq|}wqlijprf`_et~qlknz|upmihin}zkc`cm~rlikp~zsmkkp~meadl{ukgitwniggly}ka^`izukffl|}tlifgmzmc^_fn|thcekxrjedisvg^]_gsrfadkzxpmkjlpv}~ld`bflwnhhkpzxolkkmsqe__agmz|lffjnty}~yusqnllrzia_`displmpvz}}|{voln|ofb`abgpwkjlprpoq{tomlifgorfbabcdivpkkmmkijrzxwqljn~nigfdbemyy|xoifjx}yqkhiqwligecciz}rrx{tlggm|~}xojhjuqjfb`aguvrx|xpkimz{uolklv~oiecdit~}|vojhkw{ojhgjqshb_`emyngbaeovlgeejwphcbdk|xmgcelwqkhkt|lgdekxwlffjo|zpjjnxymihhmzoigio|~sljltynjjilr{}nigin{ylijouomjkow~oihjrsjgirxspnmnpu~~nhefkrzwkfgl|}ytomnnr||smkmpux~znkmy~{yxzyx|}vpnnnoxzspry}yvrpsz}{{zz|zyvtqpoowwttx}wpnow~~yz{yxutu|{urt{vnklpw||yz{ywvsv}}toot~~yqnnprtz}|zuqppt|ztpr{|xsprttty~{wvrrw{~xrt~zwqppqu~{||}}}~~~{zyy{urtxsrommmq~y{|{zxvxz|}~~~}tnmq{wqmjjlx}|xvsrty|~unknz~ulhfho|yvrqqtxzyplls{mgdely|yuqpruwzvnlnxqkggkuztpps{|sonpz}rmkjmv~{|{wtqqv}ytppqx{ojggku}yxxussrwwrnmos}qkggjp~xutrqpps|zsomnpt}xlgegmwzuqopppqv}tollntqkhhlr}}xsolknxyrnkknxvnlklos{wrnljmw~ytommt~upnmloy~|xsmkluxnjjo~snkjiks~yupnlmt}rkgglyzokhhin~zrnljkp|}rliilu~rmjiiltvomlkmq|unkjkmxwolklnt~wqponmnsztnllmutnnnnnpx{wvtollnx}xollp~zsrqonns|xyyqkgej}|wh`dyxihnxzrkhpwoswqlkmw|g_`i|}d\\]kzpxg]]dsxe_dp|y{}ujdem}}~zpkgehpvrw|xpnnwxkghnxqllmlnryohgilpw~~niinytmmkkmqysnnqy~}}{wplr|uqqnkjjn~vnotxyww{|ibdm{~nhimrutu{~mjlu}ojhiqyogekymcdpvjkzoddoukph]]gphkqb_in``llbg}~hbjj^_nndge^c|k_`ve[]ue]dh[[kh]cu]X]{m^_u~_Y_u^[gd[_}e`ldYZiqcexze`jn_^jl_axe^d|h]_yj^axy_[bk]]mi`hp\\X_~odhzb^hobbo{fajomy}h`cqtjir{lhntghssik~kdixldg~kcgxfcmj`gzhgxh]^mjgrmcg{g_eyugfsmegyyf`hwfcmogj|ud^d~iclk_`nh`hs^^mi\\^pq_^mh]_{}_[bn_bye^gp_^htijynhl{fagzjfltednkci~c^grccrw`\\dxeeve]asuedsjbg}lfkngixtkm|sd`ilhnleh~yd_e{vfgwlaevpdcpnadv~igoj_bskdlwd`ikdi~ifntefqlhoujjylegt~ont|ppzxmjo}wos~~wv~~qmmwxswzmjmyrmsyjgpwkjvofeoxmpwhfnrmqojl{pknx~tnsxpqzsnmp}|uuy}upot}wrt{{wz{olruos~vmkqspwsnq{}ww}z{yqnpv|}|}yx|~zz|}{}|vsrsuvv{zxvx~yywuvwwy|||zwwvuz|yww{}}tonqwzxutux|xqmov}{uspmnpxysnklp{|wrnllrwqqqppnox~wurpnmoxtoonopu~skjlotx}ynjknqw}uiego}md`eopf`ampfbfyurw|ulfcj{zxmgel{vwwqmjmy}njkmnnpwtllmnosv|ldeiqvhabiwlcafsvibcl{ohbdn}tjddk{vvtpmjlu}nkloqponupkkmoonnvniils{yjddjrmebfn|mdditujdcjw}mdaep|{|vnigl{ysqrtolkn|vnlllklq|qjjnsxz{thfin{~rgbelwqfeiw}lecjw}ib`erwlgfmzvv|}ukgjtsd`ib^zlWZwz[YnhYb^S\\uY_pMJ^XKWyLKcWObcQ[cNP~WNb\\ILtTPn`NToUXXSh\\O[XTkZNW`^yg_ph^jn^af^jf^gt_^nyil|igytdfb]jmXYu^S]xZYng^od\\o]Q[XUl_QYZXlc]o_ZliVZ\\UcyYXlj\\^idqhbpk_h~ZUdnXZbU\\^Zlh]jn^f^\\saT[^VbpXZzb\\l`[lhYb~UO]hRV]S\\z]^b`z^\\pgW]WP_oW[_WboalhY]{[YriW\\{YVdu]^tv_`wgau_W_\\YooY]~_\\kweln_fa`{`X`^^xiZ]vvbcxmekm`e`]kj]`|odk{ecpnjzmah{cbui^da]k~km~gcoqml_ce]lz^]ue\\gcauyc_pogul^c{a^ok]a|hdvxfgvuhi~qjwvdf~lcmydf|ulvthmtgnh_iz_^vm_egcvyine^e~ggaZcu``vi]drgp|iiym^]owbg~_[dgg}nfizshmmcjqdiva`nnowih{}}jbeuxmouhjztjj~rin{hbili|cZ^vmfrtbbqtn{xovyml~kj|{famvm{lfm|nsygbmxmvg_esvmr{pt{ypkm~rlum``pwiod^e|xuwrx}{urzqn~oei}lo|hdnyno|vknogk}jhvompzzolnz|~wfdpncgm`dvrozqmnsyxx~x{ljr~kk|ughw~tz}rrz~uwpqjciqltwkjv{{|mhjvxll~qbbpkbgldixwns||wkhpsn|rccwshonir~vnupiomclwebovimvkntwrb_jodhe^f|ihtqim|up|ympndf}zhjibmlk{nju|urdhheyectmgq}lm|rilnkf\\_ujdrn_`pnkzkbjldlhanh^dpisneksrvcaoqhsc^jncimdlmhq~kk}sccs}lrf_gwmtifnlj{vfgw}gbmmhuiaf|xxxigspm{pbcuidpigwyfcnovoce{mhso``tnjzxhixnfjmgsh^dgaok_c{qmlcjoiugdujalieqkcmnsr`_nler{_]knbjjdm|lix~r~d]blexm\\\\mqfnfcn~ptxnvtc^gniyi]azwqmeizwphcm{e_kphpiah{{oa`mqnp]\\hieukek|thhwu{|e]azyph[[h{vifnzzplvqluxd^gnuj^]jqiiny{uxidl~jdmyegskcesv~~mhipz~}hcgu{umnmgj}mfusZVf]ZteRRlp\\^g\\\\iohx^X^t]b^TZq^f_V[|ompdbokkn\\[ikankXWj_^ylZWdpbhh[\\kxhlz`X[kef|mYXgd^olXYkrj{h`dquwf]_mecvfZ]ovj\\\\jykdejlrse`fr~d[]j|~h\\]lk`al|~l_]bsw\\X\\nro[V]rzh\\Y_lx}h\\[^g}x_Y[js\\RUcxjYYbi_]_m{`Y[j~]VXc|r]Z]hyra\\[^hgZW]w{thXW^yi\\\\dylb^aoh\\[f}xbXXbd]]g{|j`_`cm{h]Y]n~{lZU[nkk~^Z_r}g_`hvmdcmm\\Zfyjqk[Ya|ro{hb`elrsv}f][ap}~d\\\\dopkis~e_cmvqihwzpmhgikvqdcjrpcdovs|shgmvrpxumjgdgqj`_elrwu}}e]_krokk{o`_isqf^bvmjkmlgchtsgeinuyz{gem{rlo|hgn~}oiksmorqopvnechpy||}pb_hxukjwugfknnkkuvqqolhgm~mhjq|}zzwjkr}yxqq}qknynkp{njmy~vhejwzv}rprrommutrx}|pjjpyv|wljmt~{z|}{vx|v|yptvr|xqv~z~xvx}|||yxwvvvlmv~rmqsmp||niisxmny}njlvsoqz{tonoxxx~qkl|~pp~rknvxunpytqs|}qlp|tvslin|{tlkoy{z~~oklpy|rnlo{tjin~rlmrwqnnu||tnmo~qkipynjjq}wnllnsy{rlijp}medm}ofdjywkgissgej|~zhaeu{}kacp|oecj}xibdp~{j__jzoxm_]fu}tc^bp|}{jbbkyr{xf^bszti`bo|whcftukgfl|zqkgiruh`dpsg`bm~ngeiuvleel}rhdhuvkgirwmjkpyxrmkko{rkilvrjinywmjms{yollpzymim|}ymjnyvppsx}smo}{|ymjnxv|ymlpz||yttux~~}}}|zuspqy~soq||{}omp}|xppv~~xtvy|z~}wrw~sop{||vsw~|vt~tmlouzxqlklmqznghs|vjgkx}~xnlnvypkiku{uv{wpnr~qnt}zuqp||wwwvwvx||~pjjnszyz{jehnx|{}{ux}|xpnsphfgnxmkp|~~nms{|uqwmggknqv~pheglv|z}yjfju}zqnyvc^blsuszxkhjow|~{okknu|td_do|xhcfp}}vry~{|xnloumjimq|{mgju}{v~omv{poz|pmqroln|}rmlmqz~{tty{zxv|sjjouvwohip~sq|{{}qlmvummpuvvymhk|wkkyqmoy}rmn}ykfgkr{xnijs{mkr{|~skiovootxwz~}uqt|sjfixxkkp{zrno~mil}}jabk~|}~qjgkoikxzljtvlrogk|ukgk{~y|}w{vunegqyhaewrmpx|wojkurlo~qeagww|n`^fmjo}plqvx{limy|njm}ssx~vt}{~tjgm{tkghpzxwutsomnu~{pgcgqrgchx}zz{zurtx}|uolms{rlikp~{urppw}{nijmnpuukhinu~|vspnopt|~lfeiqulijlt{vwz{zqlmwylefmyqnmnq}ytrv~|z}wrmkilxwmihimzzz{tmklp{vkgimvtkghjw}z~zvrsz}zlikt|ojjmv|spmovzwpliknxqidfm~tjfjr}znlkpz~oiejyzpmp}smknuyzmjjmt}xnllns{piikrxy~kcbix~niglvzlffkz|ja_fv~vojhksxmgejushbbhxvpkhimyogdchmz~kb^`ivukcbgquc^^euwd]]fv{nebfnnd_`i{j_]anzldcgq}nfdeipk_^ak}~mdberpfbfltpb^ak}xlhgm}mdchowibely{smklq{ulikp}}kcdm~{oiju~qkkms~rhdgq~{~znjlv}||olkms~}tmkklq~pnprtvux~zrnmow~nijntyznlnw}z||ynhip{qmkkoz|upoquywtyzux~ylfivxuwzumil~topswywwz~{wywqmkn}tlmnomnzxnmnuywz~~woklpyrkijmuvmlostvz~~zrkhkt|rlghn}|pllmpuy}ysstplklwupnjgiqzrnmllr~zrmllmqzunmmllp~tnovvolmx~~{nhfky|rnkjjltmjmvzunmxrow|ngdkyrpmjijqymjlouwuvvrvuojfhtxupkgflwvrihlzznpse`fxxmkjhjpxx{g__j{x}wkehtmedipwz|}shefis~ndbfqwiegnzncdmwzmgfksvic`dsskio|}wolm{ldbdjmou|rolhdhwtkkpz{xuru|ollnnpyznmnmkmvplp{vnmwsljhilwxldbfpskmwqjiuwvxrlkpyjejw}xx|vptxv{{yxvw}~lc`fr~nlnw}uooquzvkghmvxvsvndafnvot|pnpvtllp~uhfjztnswlikznils}yrnnyf\\\\arvnnyqgdfkzukjmt|{vsr|n`]_jppwf`ckyrnmnpty{ua[]ivmyh]]exrtwqkijnxj][_nyj_]an}ogdelzi\\Z^otlym]Z^p{w}~nf`aji\\[aqvnyl\\Y]nts~od^_hcZZburqo`\\_kyptuh__f}j\\Zbxnm~p_\\arpn|n_]fi^_k}lk{r_\\atxhgqn^[`r~c[[d|whgos_[_ouhhsmbahxpebhxvqxkehunlvoedl~lffl|xtwshdgo|kgj{qd`exqd`cm}y|oiimyvquxkgj{mgisypmnr|qq~{jegumfgo|y}oihkow}ut}ofbfv{kfhp}xonspeaeovtzxibcjznmtuorukhjs~rnuufaertmnxulkwleekxypmpwgbfuqnr}}qllvlccj}rllvue_dt{kktnhjxleel~urwxjfkz~oms}kceqyhcgsolnw|ngflzyrs{wjdeo{hcgvnko}vljnwuuhdhz~ljq|lin~zrmoxvpvxf^`nylktrifiq|okmvzsr||h`bm|op}okjnwxnnutmm}{e^anvouzkfgmzxtuvurnlp}f_alyv~}nhfjt~ywsnljjrjaaj|{w{qhcem}}~|slggnndciyxrzoc`doviccjpcbhwwmpvd^`kxi`_ewrfdk{|nkp{hbcmmc_bnyigm|jfl~jegp~|z}lfbdoomsthci}~idgo|{urymc_al}qslcai}lhlxwnmrnb_bl|xlbaiuqv~~zqkkpnc`en~~yjbckzwz~yqlkppd_bl|yh`ajyyxlfdi}qeaciv|ia`gyz{yjcbiqhhjnwz}wkffjt}lcag}ukjlouusw~wkffhn~}mb^ctunouyysmnx{plmnt|kcdnumozzmim{}}zronpu~thabj}lb_ep|tmljlr|yjdek||}nffkyvnknsz|nmnszyyy|pecgn~|mecgm}mikp{~zuwsmmry|{{}sgaciyww|~{uoosvpptyyvst{znhegm}}}zpkjm|pmoy{rpq{|njhilv~{smlo~pnt|qnp|ylffjs~}~}xpmlq~omuwlkn}znjikov}umiin}urz|niiqrljjmowpgdgrunp~oigjxqmkmtx~~nhhnxv~rifivuqmlntsjhjq|{ztkfejtunjikp|smnw|rosrkjnxwqoquyy~}xomroihkr{}vpmmov{ztlgfkwynjiloyxuqprv|x{ogejzvolloz}wstw|{y~odadm|uplklnu{}rmmow|{xsr{kb`en{nkjlpzwmlnx}zpb_dmvnkknwunnpw|xtrs~oa]_eqpf`_dlxnkkntyuonrue`agrldaeo~xtrtxvrqtzg``frrg`aiy{{||yupmkmq|vg`bhuwhb`gyqpu{zpkmtwjcchpsfaclyvx}|rmmrpkjmt}{ibbi}uszpigjt|okkmmmnsshddir}yy~}oigiq~onrusmikwxkghnwzmhfn~|sjegolhhlt{}|lcafspf`_h{plklrttvw~qiehp}lc`et{onsy~~{|}~rnlmrx{mfdfo|mkpv|{tqno|wmkknttxujedhqpkmu}}xsoq|zqprw{zyvkggn~wnnx}y{yrqzyy}ylggpxsootw}}y{|{qnr}|vw{lfemzqorwyzy~}y{~{wsry|x{qgeksmntx{}|tqrty}{zqhfltonqstx}}tnnpv}~vlffl|ypnprtw}}rmmq{||vjfiq~tommqyumknwwr{vgacmskghn|xolloy{vzlb`gvphcgqwropt{~re`cnwledjx{wsonoruxzrf`ahu}nfben~z{{wqnmou}|kc`enqicdjy|xzxtnjjnz|mgceku}pideju}ttwxvollp~oiggkoyrjddju}{zwrljkpskgfhlssjedgn~~zslgfiqxmgefjp~zlfcel|ynhhkszjcbem{thbbj{|mfeip~mb`ckz~kb`ftnfdip}qfbcho}ogdho|pgegmv}wjdcgmwngdgnxynigkosxyzodbiwl_\\`lyhdgnuz|xjbblsjilnomklx}nnv~ulhjstmlxxjc`do{|lhlv}zojjp~ifkzxsmjhjowzvqos}xmlmqy}}uooqwzqmlq~{wxyz|womnvzv~sljjmtxolmu~}{nifjx}x|hacl~zjegu~}|tkio~qd^_i{{xrmlo|{jdelt}zvyplloojedmpa^evtoxd\\\\fymto\\X\\k|n^[bpgkqb`jpjncZ[jfcmoddxl[W]nkdie^`plfjz^X[jyxs^XZgujsm]Z`~ml}j]\\fmdgumc_jwnzze_cyxgaeoz{wr^[^m{kl}m_`k~urt]VXcv`[^nmir~g^_nk^[^pxou~{tlgkxspry}umjkz{gbcfjkmuk_^gxpnvsc`gwhYSXera]by|kl~s_Z^n|eZW[pml}yd]_n}jjyf\\]nmcdjomeagh`dquhfnk_ajz}vsdXV\\jo_]ao|q`\\]irc\\Z^n~wz~|od]]fxot~j__kn^[^fkkimsb`fpztkflobaiv{z_VU[lh\\Z_r~t}n^[`rk]XYbzh^]f|zr|mb_fh`beghgjvkfgmuywptmggjrzy~l^Z[evsd_do~z{icenykc^^eqxpkknr~yrvyvtolnxyg`ahmppp{vgdk{{oltnhgp{xta\\_k~zxrdblqlqvmmulcbgo|~okp}}vvz}}{{{}tkijlnpsxzqs}rnpv|}y{|ynjhinv~|}yojlvsmqwkddkz~{ylghoqkpla`i{|uzrjinzno}oeaen}~|wokmvyt{~sjeeipy}~tkgkvus}xjccfnz}{snnr~~zzx~skeben}ojms|zppxqnxxnnonkhim{wxznkmt~wpp|~ohefipz|x|yqmox~wqxvh_`i}~smr~|pmnx~try{tqlgfhmyzsquz}~tnpx|kcbfo}wv~wmkq~vqryzme`eky~snpyypmq|wptqkikmnlkqwwwqqu~{onpxqeabgox}}yrt{zqnnt{vpnp~|tlfbdjz{tv~|oknwuot~rnnonlmr}~|yyxwvvwz|~tjggjq|}ut|vlhlxvjgo{xyxslghnvrx{x|zmiio}x{vopy}tlhjt{{ujfhny~|{toq|vnnu{zuqnr~x~~lbai{yurlnzvtv|wpqy{{wojggmy{oklszonuwnpujimuwpieh|stzkdeptlq|lirmccjuyqjjyzkilsxtnlnz}oloxqe__dju~medhqnfdkzog``h}}pfadnvqu|wonyyjfhlnnljpoijntuoklz~kgktpc^^epmgfku|}|pjkuxvvuogdfo}quxjfirvqw~unnzniilmprpwtswz}xpljo~{spox~nf`bl~y}ypow|}ztv}qmryu{}{qjjm}{purkijnvz{}~tprz}tnlnu}}zz~sjcbhp}rqt|~sorzztu|}phdejp}yvvxxz}}wsuvuvyyibaekqxskhlsy}zvz}rmmot{qf_^bkzwnklp}}z|}zumjnyynkiedflypsy{yusv|~vsstropw{lfehlqzxnlnt||~~ztnmt|nd_akvnmu}oms~olu~shejv~~}vuz~tmnu}~wu}}~ukegmz}yptrheky~suxor{kin}}uyqihku}z{~|{wvw{||ukjlqvuv}znlp}~wvyxqoqypjilpw|xy|zqmow{z~xx{okn||tw~{||oklv}x{}qnou}}yuuz}xtv~{njjmtz|{}tps~~rnnrwrv~mfdhu|tu~spxytw}xuqomntwssx~zwy}uoou~{y}}lfejqy~~qmow{xy|ysnnusiddj{zplnxqnr}xpoyzyzwpjilxxvwwwvvzupqv|}{{nigins{qlmx|z|{qlmynecgq}ojkuwrxtnou~wniginyvsqsxy{|usvx|}}~rlkmnprx}pns}}wv{{tsx~|qjhjns}yuuxzzzyy{~~yxvvz~uomllnvzplmr~vmlr|nmotsnlmzyqvymfgowu|vnltwlknqqonszvz{wojjo~wnijrvsplifhs{~shbdmmdbk}postnhel|{nfdjx|rkin}~tomkiio}pjgiq~{mghr{ohbckwjccjzugbgt|xwupjefm}z{~yohfiu~~}plkqxmknsromp}qqtutmkmw~xwustw}sppmnpw{snijp~~qjjpytvzzpifj{}|vjcfp|pkkq{roqsponr~{trvvomnq~vnt}|{}}vompt{qjhnxhaexyiccj{ma_doocaksd\\Z_tfZZc~e^_moaZZ`~^UXgu_Z]lvb[[bZPP[cZ]liYTXbp\\X\\m|a]`os]WX``Z[dxaZ[dq]Z]leYX^psc_fzeZY^oj`_gm][`zhXTYhygbdkdZX]zlXTYfmb__hn_\\`hWSWclb`euh_]g_VV[k~h^_j|f^]gm`\\]hn\\W[h{gairc[Z`p}d]_lidk}jb^cvkefks~}x~yjci|qgfhkpy~pjb`j}yps}{qlo~xic^]_ntlnsutolovznhddl|pmnoqqppv|ne_aj}x|qnpymfcbix||kb`dsoebfoxqpt~~pf`akyf`cm~xps~h_]`pg]]fzr{tb\\[`pmffp}mluj_]_m|iegrxibemg\\[_ui__h~iacm}aYX^snhix~iaclm\\XZixdail]Z]mo\\W[mi^]gsc_cti[W]n{hekyicbje\\\\foddq|jb`drk^^ij__mvjgj}l``iyofgzufagxsfbjz|idh|~j_]cp{jhmy{icgrrb_er~milpyupypb_ep}tvxy|yuh^]bpwxvtxz}umlnxk_]am|mjjkpuy{uszue__fruopv|vnpyf^]al|olrqhgqi_^bonedj{mgj{vd^^blze_dr~g`fzi_\\\\_lv`\\_r}c]aulb__fvo]Y]o~gck}ha`biwh]\\d~jfmrc]\\_ic[\\hwebi|h`^bnza[]iujkwsf``ful`^ctvllzj_]_jmbbjpgfmk^\\`pzf_`hwtklvg]\\bvj`_dotlmwu`[[bzpc`coohitxg`ckve`ai~vorrhdhpthbdmony}iaafrqfbfqoghpldbfppfbfpsnsoihjqtjhk{qouwicbgpxmknw|pnqzxjdciy|wpmmnt}}kccj~wu|zrnp{vf_`j}xtmoylefm~xmjjn~ykehq|}~zojkp~yjcdk~{okkr}wmijsz{ywqkjlo{oigjt~qnptz{ywsvogcdirwlkms~{{ujghn}xkffjuujfhn}slihlt|meadl}ulifiqzpjfhnvkd`ags}skffkyyohdeky}phcciwtjdejzymedixoe``gx{ohfjs}qiddixwlfcemxkhgjp||smhfisrfa`em{z|}xnijqnecglxxvw{ysmhjp~kedhmxxoloytkkwre``emyskksvnlswkhjnt}vppqomjiona^al~soow}rln~vd^^dowtuusnlmrna^ajz~uleadnm`]_gx|spu~|ldck}o_[\\`ksnnu}ynhfkxmebeksyxvvnfbdmk_^bm{rt{ofej|te_`frzw{ymggopljms}}~ja_exvgcekvyut{whabkxf``en~}sljksqhdhq{twnfdgonb_esykhmxhaclna]_g~zpgdfoldbht{y{}me`bkxqd^`mqdaj}jc`dnf]\\by{np}ukjjn{ylilzuy{kb`fq~iack}}lffkzi^]`pi^^dpzqsu}|jbcmslluvst{yjfelnhkusgdgqzd]]eneafn~~nkl{we^^fxvrprvx{|xwsuyg^]assjin|nggnj^[_ni^^g}tmryia_blpb_dpyu}rc]\\_lwg`bk~ymm}j^Z\\go_[]h{w}se^^dyvb^al|nd__drg^^fx}njovb[Z_ty_YY^nqlp~h]\\_nxf__dn~ma^_ki__fu}wwn`\\^ih[Y^myptjb`dnrc^`jwx~f\\Z\\gsd]]doojol\\XX_w{e\\\\boznb^_hlddk{xszr`ZZ^lwb]_jleh}|cZX[d~{d]]csyqwzd][_l|keflv~}wqtq`[[`tkcdkzqjl{xb[Y]mj^]bq~po}nb]]bnpechutntwa[Y]jzg`bk|qilh\\Y\\gn_[^gx}|{i_]`lnc`fqxi`]^f}yb[]g}sr}l_\\]fz`XX^mxi`]_jxf__ckzzka\\\\cy{c\\]cm~ug^[_m~aYX\\ewyuohdbgsh__dn|xia]]bpm^[_izod^_hm^Z\\bozyvrlhgknb`fm|smifeejx{c]^ft~tkebdpe]\\`k|z{|xoigjx}lhilpw|ytmgcclibcir|~|{|ka^dynb_agpzw}qigl}zolmmpvuha`g|~pllnry~vtxm_\\_nphdehoyre_blyokmptz}pfaafu}kfio~rouwi`_bmj_^dnwlebelnhhlpuxx|sjb_`h}whfkq{{vtxqf^^exufacjp|{meacizpihkrz|}}j`^aj~~ohglwxnotc^`frxibbl~onwkbaenzwvvroov~oihjnt}mhmykioyidekxphfl~}mjqrmntz|yv{}zxqpvznhgkvqmrxlilvzrnllmtskklq{|{ogbenrmpz|snq~qgack|}tsx~yqmpyrhdfoxlfek{||{kechu|rmlory|z{we^^dr~wsvx{xqnou|njggkuoc`gu}}ngdeivyjhkuvlkrwd^^cm~smnrtrmjin}pifefkzledinw{ld`ewxnnvunpuf__ft~qkefm{snjeglzxh`bhsrt~~d]]c{}v{|zypnop}k`^`o{|mhgn}pifisxe_`hwtpy|i_]dsrnpxysnkn{ogccio}}xqmkks}pc^`nr`]`my~yh_^g|wsw~qhflj__ep~vf_`izz}ka^ani][^kzpxv_Z[f|}ogcfovgaagsm_\\apvo}sa[\\dl_]bmwkl|b\\]g{w{vg__es{lggksywrr~seafpyvl`^`n}khksuowumlmqx{~vjddj}snpw}wlfgotjimx{nhjssf__h|qmnvzpnpyxqqv{|yw|~niiowmkmwvrt{unnvndahwypou{wrons}yvwz{wrmlr{mhfkxzlfek}vllrtnnxykefl}ypkhiq~tt|phfk|qhffkuwib_dtojny{okmy~qlhhlsznfbdlzoo~ofelslijnwyi``h~vqw|pkkpzspmmpswvh__dq~wv{ymihlx|lhin~x{nb`eq|tnouz{vux}{xsr~j`_gzytzrkjmvvoqx}}xtvuidgo~y|zsmkox}|{upmnrxhbcmyopridhsypnlmuphdivyuzmffit~sjfggooecgv~pn{pdbcjs}{toliehvze`dm|{soondbglrx~ulg`_bnxc_fp~nhhsre`chlu}zpjb^_jhbgqzvkdgupdadjnpv|ne_\\_kmhiqytlefsibagnuuf_]`ozuqpokhgl}ngeinxh^\\`qxwyxsmihlxsjghkqxz{zg^]bp~}|yqjecgsnjjlrvwspy}h`_dp{vmigiuqmorvvqnmwlebfotjdeoznoyukfiv|njfgkv|{ka`iymp{xkefs~pnlkmqxkeem~v|xjcdntlkkms}vkefl|tjdfn|xolmot{}~pjfho{xlfejr~omnswunmzvsvrmim}{{xmecivsttux}|zm_^ezonh]]iup|kejzvnsyhdmznmwjccjzvwuommq|~vx~ngiqqlp~tpy~olq}plppignwymgio~~{snovy|||ohjt{wy{mjmtzunmpxwrv}|umkqvrpsuurpvpkhhhjv{por{~tlink_cpqnsl`_jzpyi`gxsksrb`jigvl[Y^omlxi^^hrtm_[_u~nsn_]amgmq]X_d[`~dZ[so[Xcygdp|`\\b}jdj|`\\`sthmw]W[miex`VVbpfkhXV]vqf\\Zcplwi^]frjlxpb\\`u}`\\`p{iajbX[jvhhg[[hznxs[V[nnvv\\W[mpsq]XZfpc^^f{x|{qia`ivx}tg__jsegq}~ogfopcajy|pjof_aivtb\\^kw`[^mkj~y\\TXhvgp_WYhzimze]^mpqrb_btliq|j_`mf]arm`awm[Yb~lhvk[Y^wvpm]\\fpn~f[Za~wyn^[^mnl{pd_dynn{tgdlrhjqrheq~idlva^gb\\^kthjm^\\cox|qfadppb^dtxl^Z_}mckaY\\nsbdr}jaevgfnxxnghykfjtwljwj``hx|~p`\\]gyiabjy}via`eu|mb]^grotwulgfhxpeejnwuoqxpd_bkp|ldglt|urzm`]`n{xo_[]g}oeacl{ulhhlsogcdl~zpjgiuvmmtzvolltyjggjlnv~zolmllowuomkknrz|phcdk{}nfbix{meejs~uidfk{ticeo~mccgm{medis{kc`hwvjdchuukgfkq}ogcem}qf`bj|}piefjnzwjdcirte_^fy{kb_dkxsd`dmi][`q|h^^eusd_`k}{g^]bpxld_clwutomjhl{rlhjlou}xnmmkmmo|llmptnkmxpdbhp{{w{qeaciqzqjgilpvtjechp}pidchs|picdlvmknoonmtzmjhiklp}plmnmlllwsfcgkpwuwpb_bjxwg__dm}ujdbem{pf`_dntjb`dm~sqqniefmphfjmnmltxmighijqvkhijkmo|ogeeilo{uhbbgnqib`cm}wrmhfejy{lb_alzqt||ne`dswmputngdi{vomllkjkuzomighlz}ojefimyvha_dtsjdckvplmpb^fgag~mbamxa]esc^oiUVldUZsWTan^]skYYnj]dz\\Xb|feaX\\lqgw{^Z_knmjgzd\\geYZtm_kj[Ygi[_|i[^\\U^d[fhSR]}~ceeY[covs`ZZ_lrjfspmmlmkdi{opqmp~v{x}h`i}}wwvb]_flzwyb\\^aiokit~jebejkgfkyndeptlfjymvsmn{|xxv~offjnxze`bfjnmkurfhmrrh]\\ggfohZYanjsg^cxg]bwplsq_[\\hk_\\]bmzxmkjje_d{|x}~na^buutn`anf_dxmdjl[X\\kqoi[Y\\fqwrwpeehje_bnrmmkhgipzlfkz{|omyzkilt{von}ve`acda_fxwkfhia[Y]ryklpnbYV[lutztc]]f}mdgv}mglzurniksqjip|qnnf\\Y\\jxeZVXdeZWZgi__h{pkluvlkp|g__iqtxx{ygcaafkt~qje`bgm~ogfjko|pln}|ptxliprgflvujfjtyomong_]c{omyrd]]buuw~vh`_h~~yx||tsy}|ukjovxy|xkhggggkzzzztja_cn|rw~xogadl~qt|unlrvnlnvmb^dl|wia_cnnb^`mldfm}v{tpwxmmozx~phgjowrsxqkkjgjmu|me`cmvniimu{zxx{}nijrzs}pijtxnmwylinyxohgmspuunhcbh{yi``gq{u|meely|wvzzx~zsmlmrxpmklmsofabgssc]_l~kbal}unsqnwnhjusnwzkgkqwwolpslhgeejtlb_ais}wljmsxwvwtp{vlmuniplgnqgenwwywldagwxf]]al}nffjkmps}}znijnzssmgkxumoyz{leclj^^ev~y}f_dnz|vnmztmmrsolhky~medfpu}|ojmrx{sr{}}kghl}v}sefmvykkqwnlr~skedqqd_eo|xgbdr|uw|y~nlmrzxwunkmtpliiswz|vmb_fvf]\\avuna`hxro{ulonhlzzpxnilvrkm|yonqrlhipxjdbfn~mfgkq{ys{tnwnghorq~wfdkytjhvlgk{ykcgxtpxma_dz{pd_ev{nm}~nmrznikuwmhhjmoov|niggggmv|vph`^`lug`bmy~mjn}}nlq~ukhlvxxx~rhffgkowujeaaiwzhbdjyy|ohhvtljvj`di\\_dU[kyeQRgxTR]IO[FI{TKbOBJpJLLFYTFOkGGfPHW\\GKyJImVGOcHHgTMgaLNokOP{bQ^[JNs`YybOQie_plno^_qh^g]ZlgTTkaYh^]xoVRca[y^MOopPOocP[^KMq[VsZMWfORYTk[NWqSSpeZidRUrZTd[XnYNWa^_QW|kX\\bXf]NQ~[UmhOQpYRbtVXZRd]NU[VzYMXgTZ\\OZZLS\\WwYKQ|TW_OYiOOl\\SbfQWWSj]TdkSV|QM[|]itRN\\]VfYUgvSN\\]]VO\\w]c]]|YVhdT[ZTfcSY~[ZwmZ_eVXlshzgWWfy__~p]]rmYVcjlv[U_l[`h^keZ_~_^xk_gx]\\qa[j][v[S]mf\\T[yj^m`[jmYUdbiuWR^k[a`[fo^ai`lrfqecpvghvclhWWhm}nWUai]gaX_cZ^uk`Zbk`jx]\\t^XehVYwcZgjX[st_bm]bbW[xvkbW[omqmafh]crixe]dhcpneo~ghr][guxp^Y_rwrkaixd[[knrgXVat`i^Y`oahd`mqjsydcxwinwhlyaZ^v`XYjumv`^mqebuljx~offypgnqglhcnvc^jul}zaZ^td^gy}onsjpwfanpqkennmzpfi{w{f\\]ii\\[dqwkdm~ecm~yeZ[lyylaakxkkt|qjbgyqwm__k~mqrlr~pd^dwb\\]il`comhnlgnrc_fjdk|zfbnqjr}fZZhmZW^oh_cmtofeu|g\\^}p{o\\]p}fnp^\\f}mk]]hvkuqadxk[V^iq~^TVi{gZYdyxkqwimxhakkbp`[dncp`Y_w]V\\psd]et}l^\\nph~kWS^jlZS\\xpcid]e}eaun\\_{o[\\u}ehfYYlm}jWUckjo\\\\km]\\zji{iYXepeY]okjk\\_u}celZ[op_cifqvc\\_ys|`VWd}l]]hpfky_a{h\\_ndndZ]~rhxeZ]zom]V\\vrjye\\cyn_]loijXT^kuoYU_tdl_Zbmi~r_ayk^ctagbWZxitaTUhsj[[j}iakn_d_X^pev^W\\oj_X^|np^X`nh|a\\hl]\\sijjXT^mv_[bohwgespdhqemi[^k_khY[vofsdY\\olml^bu}g_kjdu|^Zdjl`Zer`fd]hrcjieolftjivvdbpq|p]\\h}p~gbjifsmjtyc^ioo|e`htip}ifmpm|oek{jjywfgown_]e|lh]]owj}dYfjk~hbqqZ[|btYP^YOcYMfLFZVIXZJWWIVaILeMWoOSpJH]`YmUM]YN`p[bVN_[P^cZl^\\zOL\\^^_SgtMI[m[sVJP[LXUZcOUfPUyV[}X[]NTw^ohTYTJS]nZMS}YLVoQ\\\\IOmHILKtNJjKFa[OjSHUOG[dRdUIRVK]_RdSL^TMeUNfVMaQHTZN`\\LVWIPtQ[eLMhvPP`ZXTiXRhb_]VgyRNcf^]Q[bLJa_\\PHQNHXgQ]\\IMYIQQUtKJukKL^WOI\\tNMxcYNJ]xQPx`[uPNiuPOo]XQJY}NJ]]zXINYLXVZ_JLzyQT][~{XXeOTygnYVlcRXz}jOPlaNT[XxmNMfYWsRNiUNeSJSaTedOWwSMXhZNW]YjbkZT_j`nh]pp]m\\PRmem_[o\\PTvvyOKY{WQolW_XO[e\\p][zcXgwULTyppY\\il^RPemZLRq_T__]mSVumUX[^YWqgMMfkaZOUf{fWYwzpPO[nY[gYe[S\\^\\ta]{cWaUO]~czrVUf|[T^nitVQ_adh[hc[dh^en`tehnZW_}jp\\\\jzj]\\j|_TZbZf^apYZwu^_}r]ffadRRakpgW\\jreYYj]U[l|nahqd~cX`f\\cpjinjXU]y~w}YX`mhXSZ{jYX]imefv}q]^k}fakosqsg][c~h^`nm]UUegWS[jrpjn{yd\\`}l_bl]`tgts^Zd{xo{zgYU\\^Zd~naezxcgp^`j[]~j{[QYmtungjh]SQ^q\\Zbpsd\\dr{tfil_hg^ozwgSTb|n|hkrkZORhwbVZnmVUejxl`iq\\Ya^]bfWNSjk{maeshXT\\tj\\[qgVWx`ao^gl]]vvagigmSO_d]lb_tt_X\\t~{{fktWQ^|_f`\\kp^^tpgpo^QWqiY_p`paPNYnalz]PRjljeX^_X^ocpw[TYi|nbfyofSLO^o`chaXT[{^\\ljZZk}dgujVRZqylvjjun\\POY}}a`lrj]Zewufm}b[_ylfz|w^TWiuoeeylYQWpc^ko^]oxlfqp[Xgpnkms]W\\mylut_TT`ynggxs]W[j~sxiUPXqyi}mfq`TS^rv}n[UYiq{mzfWT\\yztwl[TVbq{ktbTR^wlhlhXU^xmmnqYSZximqgnu`XYgzqp^Y_{uya\\_jl`Z]prnbXYft_^pz`W]zi]busnjzmf~uZTW]^^ame\\]a_`epyh]Zhthfhd]URYzx{v|j^h`PNRX]app_XY]fpk[QSfz}zvvzzl[RQ]e]]`lzgl_VTTVZgjxqbaefgn}eVQZnhntj\\TXkh_dlqypZRQV]ekz}pprx|k]WWcud[[hlhp~~vyz^WY_kiej~|tjmmd`ed\\VYlof`\\\\`qjcelyzaZZ]`ekt~pl{xkjm{zfZW`pomf__libitrmltg[Z^fidckzteivwohfkuoc^b|yrhabi~gafs}xryx\\UV]gkmsocck{~pnw{nc^g}qd^]`dlmeem{`USXctpebj|r]SQYtqd\\YZ_vdZYbv^WX\\hllq{}|~~ojug[USUZg|e\\XX\\d{k]Z^l~yt~fZX]iuna\\\\`ndTNNQYjv[RS\\pjYSS]sy|o\\VXeiZW\\m}ny|`RNNSbk\\Z_lt\\SPWm|e]\\fn^Y[btymTLMS`j^]eqbVQWjiq~nc_e{~dZVZavzSIINZlgZZawhWPT`jcpgcjp[PNS`iSLKNVds\\X[heWRT_nk}pbcu]QNPZp_PLMQ]ssfgnk[QOVcrkwulsfWQPU`ylYQPV_inxx~xlqo^WSW`rneh{qcQKKTjcWPPW^grytc_o{i^Z[_jtf^]hxWLIMZly]QMOXdxzjajug^\\^raY\\mbPKLTb}iTLLTe{}eh{zh\\XYckZZi~[MLP\\qeSMQ^}xqlmt}zl|pd\\XX]ncY]wgQKMXjgURXfvujfdekntkxsqk`YZazg[X_~\\OLP[jfXU[ee``gjlnx{dfti\\\\h{we\\VWguytZOOU_xcXZ_bcegjnpqvteisc]\\cnm^XZgmk~lYQT^n~m\\X\\fmj`_hlq{ml~tcZX]jxqb\\_xsvbWUYboy{cYZfpph^_hnmkzmsurl`[[`ws`]d}uw]RQXdv||y_[^gnmgabkmkprntume_^h{wf\\[f`RNQ]p~|{j\\[dx~vg^`jkksluutxvla_hke]Z]ndTMNWjy}~a^d~oa]bjgfnxrn`freZZ^hpk]\\}nlcRPYiiYS\\[ZjT\\dOSYDD_ZJXMNJCUK>F[YRK_I?HmKMYTQEMfHGYgXivW\\dV^hUQXgrkevq[TU\\glb]aymnTTkpPKRzp_n\\Yuh[heSUfnULR}p{XWfXLMadZkaZmYMSr\\RYhZjnY]^\\waJDKmmuw`otPIMg{XTgouWS`rTLPprq\\`f\\g_MKQhkjdhrMJVZMV\\dZOZ|QHJ]dmdS[][xZPUbmeWP[hx]WamUPZfXcs\\hnOINi^R\\bTfsZdpPN]ZIIWmwii}ZS[{aUYr_RR_dSS_pgxnj~ZVcaMHMjyafbV][OSigo]RYmdUS^}xipnjqsaXRRYdnpm}hvqeqlWRZvg_[UinUNYeYkYVrdm`TVgkYRXswnj\\X\\ghfa]e~t||hYUYgwbazcmp{{[YhaPN]j`j\\S\\rnWQZzcXW^igb^arqoxbeq`RMSd|d`olniZ^|oWOUl~keZ_oZU^k_tde~e[\\ehb\\Z`pne`[[`ghkizqsv_XZlm^`vh`mvfWXjx[OPbi`sp_X]noaXV]z}kchrzrjik{sriel~{cXT[pndmnzbalseVOSbf\\c|o`^ljakj_dnieghgdbgn}~k`[WWZailrqlsyg^gt_^nw[X`o`brvg\\[kuccpy[V[dcYST\\xznfgn}pcdpwc]gjgrjgj~d\\`ys|\\\\erfVOR_kbiwv}{i_^fyubaqzhgo}~{y~~whb_^co~voxjceb[UTZgrwxlojqdUVgbZlpkimg^dyl__kmZW[_b^Z[crs~j]\\ajph`]d|b_pm\\_xaY\\no^`{{^SOYwxb_vggkYU]nnnrttq|ziachggpmTMP^|xfraT`_duVOWkm[YsmhwkbiifndWRX{_VX[ag^Zbynqzq^X]jofZYjzun\\^tak|XNP\\kY[iwbTQWn|dhk_cjme\\Y\\gi^^l|nufWPVbow}jes{]OPajkcXg_]p_RQ]sl\\Zcb^afc\\WX^{d\\\\fqmaYXfldx~s_QP^mdsk^f|vktgZ_{jTMRtaZh|[NO`~dh|s^WYeqpgkwxjc_iwzk[TW^m{nhu\\RU^u{d[`se^^vt_Z^{lnjY\\z||^\\cmj_VV`{keei`XUXep{stdX^uge{l_eni_jk^niRNRi|p{\\ROXogbykuj_fxlgn}~ne_`k}vdZWUZeo}kUPVcqn^Y_d_{a_zg\\[onc_fkkjwnjmk_XPUcm_\\\\`c^ZZ_qpm]VW`vuobqlZZhUMTipe`]mkq^MILVizvc^domUNTs~YMLSgcXX]dheWP^ZJHN]n_RXiiOKOcn`WV]e~aUXcfstfa~fRKLS[iykzldrfPLS`joo_VXajUYlwlh`biyku`MIN\\~gX\\|]ONV[^kc[ctc[cdZV[fd\\dvcpdNIN`}r]TaUGHRh~p]ct|[U\\_ahvugwl`SNRb}stm]\\nw[MMQWWSZrvrbf}mSOPPQS\\]_c\\crf^hkXZnaSOW^|p~mrYQONNT_kedy[PXmgSOUbspj`Z]kwpnqjYPS_xpeXPQ\\woqa]eyrhdbagmgcmfY^kj[SQSU`yu_Xfnco}WMJLU`kt}_Y\\reYX\\|ln}td`maTNSnrgvhZPMOYn_STf]SV[dse[\\jtl^UQPS[ejeos_TLLQ^~|nkyvzrfc^\\_kqelj^[WTX]h{}{pZNLNRY_hz}ib_kwk[TZhmjkjtzk]RKKThnfnyn[SPOPT]hmznltvb^_kd[[piSKLWsw^SNNQTXZY\\vwurkg]YURXctq~i]ebOJKQ^m^VUWURTY]opp^URYhzkiqlsxkdUKIJNV\\m}vp\\UPNLNSW[_nyi]\\[\\ahnx~|`RMMOV`}^QMKMQQTW\\|tme_YUZ\\cvrfh{{vm_WNNNNS_xqqiTOLMPPQRYhyng\\\\denxro|poll`XVRUewmzcXOKKLQW\\hymq{||kl^URSW^ipox~e^_fa[WTRZkskhjkWMLPZlw}mYPOYh{rf_fhji_YTU^zf[Zbz`TLJKQ\\hoofoqz^SMJNZalu~pemz}dWRWf~a\\`~nYPMO[nmiWPLLQY^bflmm{~}gZROQW\\fh_^cvkZQOS\\jxympm[OMNT_gghky]QMNT`sn`^kyth\\XVV[dn|{q\\PNNQX\\fpvkVNMOX_b_]gyllcZVV[hz_TNNR[laUONPSUVW]zofhe]ZVXapp}\\OLNU`syZOLLNNOVbh][WX]es~~cVONOZjlSKILMKLWpga]WW[[cq~xndbn~tpaTNLMYz\\PLKKLNSbk`imlhbblq|}mgcbk{zo}x]SNLWqw^RMIIKNRZkq_dlw}jdccjnog_Z\\q}aUSU[tnx}{]G>?JOZÿv^te\\[YTNZXLJHVvi]YS^mLKctg\\Qamr[csWFDMSWelyqhnOGWc_^V]^Xk^RHTgpd^_ogbM@FIKQW[_WyyMOTU[\\Vkk]jJBNmn]piM?CLPYYZf]}NN]ijVJO`[nQ@COjnaf{WA?FN]]Xgc_RL[{^JJPYZqoxI>@M|ideRGHO[[QV^qqwWT[l]ONOYrenlpaFCKZb`k|h^mpNHKUXQPU`drW\\~VIFN^^Y`p`pzL@DTmzhd|e^WHHSgn_TUl\\ct_hlT^xSFCM|jjjoGBM\\a_Y\\serNHLZyz`Y_TL_ƾON]\\KKYrz\\YskuRBFPY[VR^u\\UkbMMZzoSPj{S\\mVZþ^qoNHNkx[ftXqpJEL[klVOi{ZcUJOdbSaYQ_fWppwuSGHUoxo{VZWECLYj`POlfU`fLKSuXVn[QYj`]ž\\JDI_~iWdVJJSihULP[TmzOIKcoUTucQNYp[_bnzUHBLyvjnZsRGHTb[MHU[j{PHKaeYmdQR_~c]v~x_NDJbxZdjKHOddMMahXGAH\\m~nMHMYop^p¿hX[k_LHPgY\\qTTZf\\KGR{ľ``~ZMLRlrp\\OTac[VUo[JKX|h]dn[X_^LDHVzX][OMUedgyz][dmW\\}^l_MJSfgp[_mZKGK\\g^YLNY\\Y]mlVN[p^hrimTKJYxni[_^[jkXKJO\\nls_QP[ljdg_TVzokz{WMOe~hp~bz~^_whSKMWawrv[KHMdhn|rhYOLS||plxmZRTboSN]nhgZaiYLJNXlpxULNikk}jUKNnzca_m[OOk}fW]phRKJQb{wbqcSMSnk_]g|^NJUiv]VXe~[PVkY_]SJGOk|gkvYWce_dj|{_QQjirw\\[fnkYLL\\oVRWYPIKWmhvaX\\nq]Y`nvVMSjbju_[`g`TPZYSX[VNJNdhc{k[Zfsng^i{TIJZikoTMT`ZONYfSQSPLJN[XYtn`astkd`avpXORa{rht[LMYbXOQmuXQOKFIPehYb|aZa}o\\U\\xxSIJWelr]WZ]YNMVwbSTSNIJPinhpm_gxgX[ubMJReye`z^^^\\ULLTc]SOMIGHRk~illk_^iyk^eulUOQ\\mqmdnoisiXKFKZ_TOLIGJVghspaZ_ydYXgubUQVdkdsyl[KDEL`\\SONLJKO`q}u``nmXT`}oZPS^yhombe]OJJPkl^ZQKHJZhkqt^NQTWURQ^`VbrZOFEI^aQJEADMm^X]diYQNNMKPfnj|dWNHJZk[MG@@KurWUVWiYSTTLLZkn}^Xm}^KHLZkTJB>EWvlc\\]lgh^ULIMTnnjU`SJJK]u\\]QFFJOc{UOS]g[OMLKN]k^a}vdVYZ\\lt]RLFDJVfRRUW`z\\PQQSW]z}xlpag~hUMIJQofMDABK]cRO]eil_\\UTZylda_dipv_LFHO_z]NKFCFIK\\nZSW]f|jlk_veVTUWd[MJMYmy_UKKMSgtf_`r}w}qdc`]_ZUaeV[fmlicerjd_Y]c{xnie_X[cuXLJLQ]|eVMMVfr~}YNKKKKOR\\^TNMMOWi]MHHKUikXUYZYW_el{YLE@>CLVhſ^LIGJO\\xql\\SUY]]]_cdNJFHQX^{YJC@AEJY¿^QNLKNTX]kw{oZONQYhaXPLJN_niph^YWZZ[^ljXOLNZgghbuqZONSf|onq~zzn]XWYTQVeddjwoa_YROXiwcTNTipxrk{oXPROIFKXvlfi~nlupkkmjm\\QS\\yn_ZiotdWZ]QJJRe~nqtloouvhpicjk]WSUewyuohh_^hnk^[PKLQ_nhrv{s``|f_eyo\\eo]Y\\mm^PLM]o^WRNN[pnmj\\Y\\mlapxgc^\\bq}cVQPU\\a`o\\SU^|yj^\\e{h_imf`[g|vj___ZV_p}vfdenwvm^WXVNKKQfdWPPRZrn[ST[holjlggtgXST\\yf`gxvlbYNLNVfxqe_^[ZdpskWSTRONOSgm[\\\\\\]`um[RNRZaiwaZWW\\dzns{gZOLNVjy[Yjyi_[VVelZWURUYhp]YW\\i~o`\\]^gxz^[\\glozfhjbZYTRYi\\OMNSXY^jo[[id[Y[lh[VW\\Z^tkYPOT^k][cqwwx\\POW]jy|o_TKILP`uRNPRV[`cjwi]SNMShtuyll~umjibXS\\|th\\UVVZlsim|hXMILPPUge\\_dZQTXYZ\\lk\\SOKIN^pdfot}pVOPNLNZqjdhyqkmvld]^dkg[W`sjaamn[PMOPOT^{f]VV_vhe_]_j~\\PNOOQYngUOYd{~_ZYVVST[gyv|pj]_i^X\\gj]SQRRW_ysg^VXfdXSUVX`pdaffhmv{dZUSVcrxf_\\WRQV_xdh}wlorklne[Y[zt`S[z}bo^NT`C?JPQZi׿TLXN@==NѿREKnZKOgS^c[actOBEjMBMVWNHJg_T[Vbdfc\\RTzUgw^YOJXj[[PfUMiĿKLNIHIKzWELZho`tW}lSio[SZvWIMglY^FI`V\\aOb`GFP\\]PMa`^bPWvW^a\\gJG\\UPOZtP?C\\ÿVHNg~X__LQhbNLO|\\OZkMJO~mOWv^]`MGJZjghNOjPKOagWT[cSYndOMNTYJN[OPuyPHNWIPXLQbQUZ`_IDWVKQ_\\hrRJRyxOCHx~[OIZoUKMZN]k]^¿~X_xq_PJ]QK]jT_kcNQ{XEBUпK>@OhxeV[YJRvPSSRn]MTXXkkXKKb|YaxNJVZ]]Rf^_xhdC?HZthX\\^\\gTedZrXMZyNCEPjZFGb\\]h~oW^dMP`sq_OMcnRV^rPNneMN\\eaȿdG@H^tYPTc^}SJSwWd[Xr[chUXp^JFOki[KKoxXS~hON`jOLbx]bSIY_SNYSKTq|XQ|_gmMH\\mVKSxfclMWx]lby_JJ[pXdxXYrpPUZLIRscRKUg[[kWWvOIO^laROator]PPgrlVNNPNFBMSXrb[rmwkUScTO]vfWONY|X[hsunnWOYbSHKdnoUNUoojuf^]PSZ\\TMJNlloW^q]hj_pbwwlSF?@L`~n^nkZgjVWdibe[m`PJJS`b]hz_efyt~jWalUJKR^klfrfim\\lhy_WlfMDHSYTPZlwx^_cl|_NIOkiSOQWUNLVko~s\\VdjmxjZ[ypys[U]nbRO^lxiTRWbkmftdPDAKn~ZWfo^_tx\\R^utRQ[\\XQMOayWV_hijaoZ\\vyiTKKWuxktksxZWedYcvdNGHSlto}`SX~yvdSVeiYT[]ZamPMX}nVLOesfmo_`kn^TZ~]\\kz_^p`dovXMQ\\a`Z[mdY_jWZvZU_i]fyl^VUf~cdpo\\[f{~hYXm\\PKNgzpheenkyw^OLV~^\\{\\VX`zq|rg_o_U[e[i}c]_ehVMO[yumj[Y\\it^_o`erjqyYQZgypigxb^q|XQWegZW]murp\\\\^TJJNXpl}\\TXdjZQYlm_^ddULM[t^kmq|[Zlnain_i\\SYvqwubf}jh}h]\\azg\\bni~gPLO^g_en__m~`STfrcmek|^QNTdk`taWXkn\\TWpXSWWQOOWZPWfh\\STizTVk`NLPRWivf}mMKY~gOKP]gQEDLbufVKIMZ{Zj_MMXpH;:AW\\KFGNakTLR½~[H=9:>IRROVa^^YSRQR^ujbUKGGKSi]JGK[z[PLNegYZ_^ZYWX[^]SNQf^g~ebcg{oVOXgd]WY^cWKHKV}ljojhtlWIHQk{^YUSWWQE@HW~qeXUUW`dXLIU`XTOMV_^PHJVhfe^b][Y[ZMILX~aZOKMVaWKGKZ|sZPR^`V\\`ZRNSxjNHL^xcUNN\\gTNZv^RLJOecROUntcltlf\\SS]RGHY}i\\UWk_RP^zneZXv}ZPZoZOIL^h\\OLNXn_VNLLT^OQX\\NIIS]YOJLXcURb{nSGFN~YJ?>ENZSLKS`NFBDNm]U_t[NFDKWicLB?HXqyomsoXG?@OĿ]G=9;>ABCEPZVY~cXep]MEFM]hVH><BOdƽmQLMLD=:<GfwVF:56;@EEELm̽e\\TMIL]kTOXwk{fOGFM[ZMECHT¾^KEFKNIB?DSo^TI@?HVniYQVr_SYepmWLIKS_][[dyZS[[OC<;>Hf^RY^ZRHEGL`~jXPW`^QGBDNceSV`fYNGELZpvTIJNPLD>;=FO]yaY\\yhVOQiSGEINPJ@<<@L]{[U[llOC>@KPNH?<>CM]qXSUY`]eycOJHLWPI>::<DRnÿ{]SZixWE<:=EMPMGGKWrwng_\\[clgaPHDFJMMG?=>@HPbýqkkh`Y^otda`cXH>=?DLOMLMPYk~neiz`I?>@DFB???DN`¿dhpnzmXS[_UG>:;>BCBBAAGN^¾v{vVD=;=@??>>?COjǿ}b[\\`muqiLA<;>????ABGR_l[SX`cn|hOFBBDB@????ENjŽeWZhqTG@@ADDCCCBFMYw_Yapw]OGCEIJLIECABDISnw]QMMKID><::<@JYYKGGGD?<989;>EN_aQIHIHB<9767:=DOyÿaNF@CED@=<<>BIP^ƿl]YfqQHEEFD@???BEHMZĿh`\\YWRS`]RNNIC@?@ADGJVsb[VTXYZ_nzt_URMIIJKJHFIPflYOIFFGHLZ~mUKGFGJMOPKILV|l[YRU^ZYdqiiilaec`aXND@ENgiXPNPSUTPRZ`ĿVHA?@?BEEGNc`MIGGGGKUn^WVbg]YZ[OHCBFP}žeNFCFLOU]ph_VLIGB?BMhp~^MFGIFEGCLýOAALPMQWi^kſ]?9;834:Kнk^cʼnOJEG]nW]^OD84;AFNZ`bWO<?HP\\}÷pSJXkF;<;8522;M_Oj|e`vyJ<=><;9:FZ~\\KOdZl~rZyȿmSBJ^k^LAFUy[GJ]aGJWSORUƼ\\X_zXGENG>;7;BTcǽmGCOY]dd[T޿N???>;7<FjT[}nϿoWVcjƻPHIY[ICEMb\\LJL]SDG]SNQgqϿTMLfZLEFC<846Cuɾ^otPJ]E;9@JG>88I_c^jTC?S½X\\maK@ALUOF=<K^^cDBN]e]TTjT\\ZD>GNLE=<FsHAP`J@D^Q]P>@EF@;:>X^GJ_gI=?Of[ry[usjNJSg^HEVkrqLIUuiNNžlV|˾s[KKJC=66BȺdcnVWXNF=<Fi^_ԾkcMKMNLB;<HkL@G\\˼h^ZNCAT|ON\\i`E>Hj]GJfW^^T_pmYi[_{]SQWSF>?Lx]\\vrzVNX\\A<AUi^bϿ\\GAIPUJ=:B`ZHFQʿtJ>GjcaMU[CALikYMT_QVnw\\NHMpbO]]Xrs{SPV]^NGOsaZKMS_VIFLZ[YU_w]fr\\HFWrQMRjaJFVRIL[nOFMWUxVJHNe\\GGW_STwiZXmfVT]gYMNaUMOp{fOPijZmY[~ULKHA?@EM]]RPi]MJUl{fPO`bUfLCIT^]RKNTYOHGOlQJLOMILe{WOUUOFCMZP]\\KHHQnuSWxZQ[ouULPlVd^asXJGSzsfUSUPH@>DOa\\OPbþ^HBJbmcilcXOXocXW\\pw`RQY^UZlamcVY}t[NKLNOIGNevmsvohgbXLMgqI?>I\\dK>=EOPI@@K_{mXV~ĿpZSb^MMWQG>?HSmrcsʾzym[LHPnyqSOdkn]HJe}NHMgiLCCJQUX^RHIJJIFFL\\kW[eXOLNWdfdrlw}[WROQQMNZWNLOfWZkvVLUhn^LFHQekUHEJZx\\LRwfTS`z~ƽOEBLngL>=EUzto^PIGOoOGPoOFBCDFMhWA@Ib\\^eg^MR_^^pxw`MO`[TsgLFJhh^ofwVDBHSVWVNXce]]^bmiWOLNOWkh[hQILNNJD>CL^{gubXYkg}_PRmRKTg]H??GOOE@DS]SXžm_j]ZVP\\YV[_rol`KEDIJG?<=DV\\[]bnuyxudifTU_jiLEEMPRMGKLLLSc~XTU\\ygl{TE?DQ_dUP_|h^`oe_nf^[]XZlti`XXNHGMTVQQ_ǿkfLMV^aUQUnsUGCHLiy\\lZNMat^ZZ]NNLKG?=;>JWjePFCIKOWs_lǺt[JA>>EW\\M?::<AKOX]f][uxƾSECK^[H>=>BC@;:>FMHILPqhjzjXVWnci]IJVn}dU]e]ldjl_TW\\e[emu[WchjUNQ[ZZOSdktpZXVYRNOTwWOTp[dnkyǿt\\OOQQVXNGB>>EGJSUPKMVWZf»s~ZC;:>EG>724;>>:<AK]`]~kddhcQGKGFDFOGBCBI[mo~ʽ̿hMNSgeK@=AQmsVLD?>@DKW\\cfNDBDLScŽxVJB=AGKJIKB@DNl\\azk^bZE>?M\\NQ`gOOfn^TV|jI@AIQY]ZMG@?IX\\[ZXOJM^WMZ|˿ZH<;BVqgZ\\XVWST_^MLÿb`pK><>=?GNTXZNE;<AJal{obb^z{xcŽkTRk_JBF_lH=AOnhWTgƾqspcSJOTPJFK[\\>9<IbxUTeYUeVKXNMMQNNTUPSlhLGQg[Q^VLXϾ\\ZY[^TSORd_TLS{yZLM]]KMVl\\PPMMLGCDGP]n]HCN^c_Wcm_zTV_\\\\ezxqgemRXuTHJWo^YgtdWMIIKOROJHLMS[Y^m[SNHISVc|offynSIDGM`n_\\gpe^V^ncl]O[kly~^TY|RNVain\\UTTali^oiRHBEDECFL]~n^[pib\\klTNOW]XULMTntiglhsiNHA?DNZfsunymg^QQQVX`f`qxjn[NPil[XOc_TQV\\jcPYXe}yn\\MFDGJTYWYh_PM]y[^y[`keXNOU^_]a`b^ij_\\\\Y\\ho]Yf\\Y\\giddgeZ[UUn~{\\ibGF]aOYuhYQO_na}w^NH?>@ILNNKL_aq\\OWluk\\SUa`V[^`ozsupf}qiWR]icXMTTZ]\\_i`NGDI[dl_VRSTNPXiZOKKKSZwgimsnUOVVe^W``zz^V]]mu^NOd|[NNXb`ZXMYvMDFN\\aSHHJNUY^OR_dRTG;<@QǿȿgLGMYvNEAGOQOMNZk{zc^ox\\PMNUTWPNcYOLLLOXgjSQNFHJN{ic]PNQVVb\\TY\\]XONN]Z]gmkVVcs[PJ[iob[^MNSQWn`V^fhonNR[jiFCJQ]j_KDHM\\dzufn\\V\\dWdssSP[XPIILXigNS_LLNKGFDDJYZKEC?FOQPZk~^Zgkumh]VUY]jsbd^UZ[m}jjcynmbYPQV\\WX[]YUcYPLHKNV]dqijn[Vcpi^WUONLRdl`QQTZhsmlh[UZ\\[^qf`qq_MEFEGM]k^OLKB@?>?>EKKKQV[a\\YORfz[[wzz\\kY]RRmi`WLT^{baPhjzjĿÿjXUiQDEHMNOODKNWVKJIN]\\LB=BHOqicKDJMNK>;<ASkxpbVOHLKLNSv\\SPXx`^\\Wjlb^X^v_[WSTKM^jVTZXUKBAEL_UIIU¿kNS\\ou_]w\\NNqa\\VQVRMTNKpc\\bkmcnj_f]YVVQKC<7:>@IRQUSKFCHMMUTXfɺsJBBHYa[PIIOTtn[Y\\Zggmlbcſi][\\XXUGFEIMWUMOP|yTGJRSVGFHQtaUuTLZʾZJD>=>IKGGDHTwſlYRXhPMR\\posgnnNGBGNLSYVSO`kWVYLRa`bK@=BX[E?ALknpkUWfk`]uu[\\fu{fVZan_^\\^tjibMGEGKE>?<;?@@?==BLi¿¾zaVNMMM[_g`TXhs^hejwdMT{YF?IM^\\PORgsYVkm{d]c_^lz_NEEILUKFLXpm_LMRIMPLcmnZ\\ne\\VLJDBIKMRU]y|bYKKLNRPRNOIGG@ADFB@H^tv|ds`mc]ZONUX[^\\[fþ\\PUVVPOMIO]ljVQ_xqoMADKUNIDB@AGJNORWVfg\\i^d~XQXm`hhukbg`Zahil[PMNXY`iturl|qihbwyn[PIIIJJIKKQPNRTpQT[ovYMKSľ]ORh^PelNGHPYPF?DNnW[W_f]S^s_MF@@FRXH=<?Jw}Wl~MEGOqpkk\\gggg^k`UIQ__OHRiejSMMW}ppiWOX\\UPHKOQNNMFKLO[dzg`YXmikmS_j`ZJGH]λXCCEKXNMKIYoY[THD?DNKOYNKOWUTRR]UcbXv[[\\VPQf~p[SncZhvoj^iZQWY[\\WXVLOV`_Znxi^[[WQKFKNWYIHFMg_ciPL`nbhilnlliYKLhxp``x]|_O^po|n^OmVQVg_\\vWOMNJILKMLNOOTNGBHlxLML^bXSNZsþ[PLIINMW`MFCKOba_\\S`[XRQuXTdbix|cRNOf{PPMJLO]]YKEKIXus^U`MO]myd[^[vvmV]~bj[WUohonP[ij{b_T\\xrgLGJE=BGJ\\\\QZQQ]U^}nq~lb__OCITUrw|n_SG?BI[sǿlTLRZ`hXaYLPj{]S^gbkpYWXX[\\b]MJKLMKW[YXT_^MKVp`_fHLaceYXT^RR_d^ľpnUKKLKHMLNVZ[XgmpzVMKJc]JBINX_cgPICDFJOOECBBKMJIISVPQfbN]lfTDD?CHIW~kskScF==?==?=A?>IGRl{tzh{ZYgfV[UX^{ľesejq`]\\\\PVRUdncre^nyWPX_[ixtnQFGNd~\\XOC<98@IGD??NYch\\jýizbXOPfscgnokl^ozpw]eļePHHGE=656;>>?=H[ÿľlipT[\\cYOGDPW\\[wiNKHNRYcM@=AJS\\FFLnmiĿ[MW]GJ\\^[]b_\\^OS^`Y\\bUYYX~YXJXoJ:78AKFE=<@TpxcdPHPX`nJJQlcQ^ľn\\P^WIHJSROmULfl^sYMV}UFUPHEDIGFRRGFLFBNoMCAOZhnXIFPa\\POq¾nVTvWA788:>?GR˾vzYPOiOLKIC:79<J`Y?;?NaʿgOHOV{ocjp\\hȹ[FKxfMUxmXJLJILSNJTOCI^_dJ=AIYZN?<?E\\hPDCXozOB>?T^ZH=D]_t`UPZĿ]pn]OVwhWPIEDFNO\\_fcY|OIICFB@N\\vvlTM[]pmbSOWE@?>GJPQNT\\zźj_KVnSJNPNFFOXdw`PKKU}x^_nZWPNE<;CKGDA@HHGKNV^tu\\ZciWTW]ļno^NZkNLKM`üZ?89ITROHH\\u{YQ\\UPTKZcZ|OFKvLFMcN?<E~KDFWl[PTm_NV^iSnɻZX_|mSfʾg\\LEEE=968H`euc_fxi_JH]cSHIQLE>FXKIPLF;8F\\wk[FCVpaPGHhſ¾ǿhUpqXD8<AMrjzNHINZM_he{b`IDFR|mkICVjQDDD[WLCA?E`tQ?BEP]W]fkg[}USAHJFLMUk~iVvkI>8>H[h^\\SvZGCKTQOEKMRL=>==BSv[^TGHU˼\\mXYZJLiʼ^KKY{NIKZvuVS_pkNFMZmoɿX@<=BJNOh\\?==BDEPx{sXMfZmgbMHGY~`VC?BFMPGUVHHGLPoXU^SLOJ^oS_b_PPNLIKHO_NB96@`jSQNH[ejPS_QZ~ra]ͻlMWaQKX]gnVVv_OOQnYepS\\RMiDDLirVTTECN^RC:FfsfZX\\[NgS\\b]̿տY}gNJTJDEFOcneUYxqy{SIEKcatOEHNMMMUoeXWWNNIM`]xXKU~]]r_MYyshv˿ȾPFBA?==EO`QWfsf]rgRPMOK@R\\dlfaPNW^\\gQIHFPhYIL[\\JFIGMSSgdwȼļn_ZZTV}kTJL[_Vu]JJB?DCJNA<AT[{]QnqminZLIG?;65:BWYIG]ӿiKTpf[Oltfgmû\\OYr]UYu_LMYmfolw}`JC?P]OJJYmkTJSWDI_aaX]rUSTMFOeUw`ceS}vXTvohQALNOaRMIHQUT_vd^TROKMWQHKT\\e[OQJKhgWPU]gUie`X]v_SfZSOLFUhI>?@EGG@??FV^^XTWV^aOHHFLXGEGGLYfihXNP]QHEIQS`Y\\¾pOG?@==?BILGJJWkhdYLGIKQPMLNUM`kX]`]QHFHMZm[C=BGKNOPT_ʽg^dZSOGKScVMWZW]mVLMZXna\\QZqiOHICITOIHDG`[qnNQwvgqx{iOMLbxy{XOMVǽaWbDCT^lVDCLs[LVZF@>B@D<8?TRCDXdɼpXORSNdkJDCIgso[]TYi^]xĽq_ND=:;@KLOC?MaŻws]VNJKGMPLJ?CHLafSX]iycWWJLQ\\ſeRa[PK>=@FROIEGAEVxTBFVzWEIMQa^TACXK]K;8@NM@523:Qn_dȺn\\`^`SNSJJROOIT]b|vhT\\debmymh\\^Y^jTU^bIKY]PD:8?Oc_D>F[DBRjxfOE@K]rWUgTLVSMZ^YdYT\\]tҾþzMHRSSNMM[`\\v}^mxaVPLD<9:<BRjYKCJ\\ɺRGHTTG:8=BNF@Ga̺^PIIHRĽZHC\\mFBEJarn\\]ɻlOKLKFLHGGFM`RIJYUTh\\LOMOk^^jxW\\\\M?@Ndek[Uk_Z[][}_HShPBB[Ⱦus[LPPB<22<EZ|{e\\fhSz]`NERxPLCD\\X\\SPja`offpzkcn|sSPXNCGNOQcoWMOHEC?=Qlg^eXo~kUgqWTp}aV`etynfLHSff[SGFQzýcU?CMWL^տOCN\\w`Q`\\SRH419?JOTXP^hVls{[??IRYRXNE<>BHRWjo_Uo_ȻTJQTUB89DLIJ?<U̳IMkK>;>Nfj`I?IPWG@KsXU_俼lEBL^]I>:BDOTFLScȿbn̽jYUXT[gelPJ@<@FU\\aZTa}nC=<<J]i^OE<>?EC>HOyumSVVQIDWbpMKR\\SPKILJfTPXe¸`acQWND;6>ZznzXIOYSTljoO@77A[?7<;===CY˷ZJEKvhNXRf\\M?58=<GPmͽfshUPIR}kWveTLMw^h`qhO_nkijWSVxPE@IBB=59DmXJMPNVQV^\\LFBZ]KTmJERݻü]GDRPSH536@Z^¸¿UM@><N`OOBAO]zF979>NLN\\迼o^Mae`c[RS{jZMO[iNLXjkh]`^`Y^ZQd]V_kYnRJKNdvVID?9>?@SvǽT>GSRC;?X^Qf_H@DndHZ¼eXC@?KmJA>?RξOGWظɻuNIC?C89;;FZ^SVLJʾr\\zi[b[NPS־jT[jTUKEU]dccXP^waNO\\T_^eZj^NK^ҽ^O[^lO`hͻQICHMB>@DDDLNY^]qR?JZҼjickTPHHOXKnd@66;FV]]YIN^UFKSоWDAgƼsaI:=FGNIE@M_C8;;KoI?NayL@@FHJDADRuVdgJTTPeyXfqYXnƾgoa_A:<C[g\\m^>5/6KmֹfXYҾ]903:L}nMCE@CNKOV_^tOCGnZICUøϽ]UY]SMTIIS[M;<=HbνdNJFNP\\fTKKLRνzaMHIKSKEE>ESc`KIZ}mkYU]WdQC@LXp\\J]UI<4056:HxlWDN^KZǽViuVSzX<7LkRK^PHOYF<>Ml]kRCJNOYoeUMh^QLNdlѷPd=:C羺LKZMB@CLfhSLKljKGGbXn¹M=;SQ:<KIGVZE:10>nûJ=;=IUOzuSOk`g`B=Gr\\JZhhXLEPUDHH\\WG>Fо\\FMq^[Orjb\\`epaOF==GE=9;F[gatkJEknmƽ]WSNؾgPC72103@inľ]JGKgpoqS?57DRUN@>QkjTJF<<@GN<<BJܼ^j[WXdz_XED=>d̻KRT[[E<56DeTI@Rͽsgm\\LNKnRIDHS^¾OIA?Y\\YM>:?KPONGMPfWU\\w]GHFN`><FZʾRMNE=GJNke]SGG?:<COĺJMZMDCIQvOFNGGKHVk[LB959;Dmn^E<:@U};\\QgO=;;KfVNM]mkK==>IbX`fr˿qYUnsUu[H?;=HYrI?>5443>N`[dlaHMJnjVѻzH;76;BNVIHELfmZXjĹP=;HںMKYoED`οMAE^RQQ[M4/6=LnS;8=P__ӽnNDN_eZhZI<=@@?E@=NoŽzKUʿM??IlYOKKpk[OQHP^XI439AMtylR<88DgʺǽeR]dI669>LSKUeUHHHEEݿ`]ugmfȿ|YNUMMPMXO7/27JYJD<:@wmth[^TGJW̼u~eJR\\J@GDFK[QJJFGRNlϽȿbE<8@ZkOHD@QW_wRFFTWhZUFBHDT^MTZP8:D߽dE?FcY^OC=75:JkX[`UмA:6>tcyNNƽE?=Jh_J?BBHSYTZB:7Ingp|acrybN?>GjcTjKKjɻYFC?KNdWF=>WWGQTK`ռ˼tE?IS_\\IF@=:69:7<B];ȿVJfK:97:?Im;ro?;;:I@IhZULG<;>GվcLllUQ>6>EKpX;468]XcӸIJD8<C=MIA^ǶtUVMK~nJF;.9DFD;9A̽Sz^@OOJȿJG758>vCLNhSSNL]hokXNFOPPϹL?pjpIKP<>>@X^T^_ĻbH<A?8AC={tFDhŵE/5?NԿtNPIMLH>IhUO<7K^n̾RNNGB=GξJ88Oоu@;:A\\l?757<??=9=g渭uZ>5ELۿID9;QG9;bWKJȼ>IITMYڹX@75NmƵNI]ĽA:<gƼE913>DWJO~CRoOGxhg]CYPkjA3227DN_PH[EDϷYFUbIWJ339ERZiƿʿFA^DN`V]UNdWKZ?^ļO=/;P?.++.=NL=88MTٺGD<>ɵORSGK?@G=K_B=?BVLĹǾK۸iA_VXVzmμWc\\f`<3>CDAOD8<;>>f`@zegfN9=667374IXV`A96:5SYuٵJR7?]eƺnֻk˸`<TݼZ==;AN_>D@=PEE=<96QIB=3;;GBBB0/3MѸMN>SZ|ɺUDC=C>KG>PɿWŮHH[A>COǸowwH99?ObP562<P=?40WտN<;MN<.2@NH?<33/2+,.>_II繺Dcaкm̸üd[ɾHTMͿ۹`JEbc72IFwd[BF=vK:1?9HR7/,,*0EJ@>07AFJy`cLwvgqf?ZkVQ;<T^׾Ҽ˿οcNMpƻwjVKBRPQXD/*09I:><4DKYN58=DXFU>80+:KjP:3CRCJ=>:LBLʲ=<Kٵ¹YrgݻNWTZ_YGzj]LD@Jca:-'!)7VN@+('+8E\\SKD_TVToqYnlbR^OȿþBޱTҿ̽I@H;P_`F>F>930DEJ?7/.4-389=Tz@9:Im`?<9PZ=F=AHÿc]ͽOK^ܶ쾻]PUPqpG:FZT?1/8<`mJKRD;918=9=>52/;=:79?Q0-3LŽ򻲿ԹóVGGqM;9E̻a=9>͸o?>;ZȽSEG\\mjMar>//<E]M5'!(AϼN1*&.?zD67ŷnEkƾP<7RǴZ.0EִO=9U\\YLF\\׹Y9/3;FܽME/*0ILC59JkQ=4/8Lv</2//2:J˾z_]η]RLùk¿ƶ?8;IR<796:]LB?<:AsoxVC?:L`úgoK]GID6FJ<4<KN`@Eer<AG=cJRETʵVüP559C:7PTNMMWμdSZSZNոUeaFD?=>H]C<GDXͷgMUTFxZK3.<T~ȾeC<8LTgd\\_HZ{xZFN}G><94<JIK`ҽVKBE:YA4;±qSN8BkʰH@>IZ?P;:?;Mf@<;0?OðqC<85]⾻?:F<NïPJʾc뷫~R/.14D|=,0kHCKMȺsO?oZ<;S]?RgTULNTֿTI<6<;JJE??ED[NHlMκAE>G]ƺ}PwžX?Zb\\UMs>43<9K]GTH<<@;YʿV`@`LC8?Yѻz<=lU41;:JYfIJB6:U޻վʾ±RKIG8QH-,-.:X<7BS=CA>ƻιOKWZQ[VPȾUO@A>iw˽9=A{iD4*08MPa0:FεMP˾˶_D>}I1B\\I2.5_YMTW~ѸNN?F\\RBB57<;YöMFNS:>пdV<AHWxnQAYHnZJY55ForvVõt=;߾]EpdK81/G`K;FFfdRFG:7=>JKFn|D=aoռzԾpHEEG[hN8IJGM8<?WOITpQ²fndXYA42^lR?I85CNZIj@7MpHILUGKG7_UXLf`Lf][Gtb?LOWG`GXCIXWI8׾bNFa`a^d˸nDGtc[D?L;QdpDSuHGBzT[X47;4;Ppn]{]XP7?ȿ[W>>?GD`羰ǽZϿMD<8.;MCOϾ;9=Uݵy`h{]Q_ǽN4@C8=@?:J@Zn\\nF>OKLTNYG5/2,+:F׹N=;>LEYfǻ:443CaTY^m뾻𿯯Z߼namVlgE@HC:HJ2097>Y>MŽb8;B24CKM@1/<FE[ź^gHIGZ[MF@?KJ}PD:I[jֻS@Atz\\Wոq`7GcFZAw๬YM@D;?C5?JHABLC0,(2ILpTG;5[NnROTKGBaԺIMJ=49_ʸQɾUIC;8B۽_zsV@C^˼^O?3.AJbaFIC00LOV@/-...=Kl_NɹYJ=?:8KQNH_B??//<?]UDvƺ]_þÿɾɽ_JJ@==`aU>41(6<^ڽlػ¾<01+/807:HJADEλGAA1;7:9`E:-.2JĿͽֿI<YnL>ίJNhƾŽCELUb߾:69XlgEC^T;SįfI/'+1;0+,)-+&7B͵wVLFWQG(/ķ\\LWTٶ@</=j̷CO?<69⿬ӿ[`ګ;7965`A..3:14=XQ>MG<OM8@57.-9BY͹ĻN:E5<8JE/CUX;B?K}ɺ䶼XNŵϽU>A?;:AG<lпjsJC<HI@BXNM_N?MPXO=6:C845<62@GM>@]sGEVwbbPX`|߾CFM>??:luǰͼ^j^oxCX˼ٻp=4FK5-4-0;<297.2<6;߿I/88GڻI?DǻpodTI>_N3=BNQYCDNT˳zJXŴ}ͺK4KC2948IO\\NM9DżJ<**9>;646;qe}o[G3>5->EEsX8GF56CRkGƹ®RFjͶɿͼQIA:5IʲMeN˳˽q=08оŽD;B5--)'*08]A6,+6JeXJK>AoXmOKY0*49U@RZC**0`ĵO׾ɾ־SY\\.*9\\YU:.(/9?TK.+14A>MqGEмĻYMXcŶz<23B\\b;<1<m[ɻ\\˼>ASFSWHIC08:<[oLR|KiM;D9=|E?hL5BF\\EQ94D47<><LJRF̯ӵ^UED?KHA@C<GzYLXYX꼻NQPM}ǽ]EMIlg?37(-8..400+-*1<S_lʾɾ]ڽ<:A?;P^V7./,4DYӽMl|õ­V`zAIeA2@53MXоl[<-9?^ۿ\\O?/3==sDJǾh5,1/9P>-*('*2QοĿJ?XձŹ|㼹:/4>齱N,+3GվaI1-1]ƽe957ALO?-.1*-6kO?>2/7N\\HL;K<ϳſwfU;OQ=K/+*$?GMK38?;@oayRl=AC5--//4\\ejݼͼ`O@iݲAgn̻[^>XU;]\\=HpH?Nu;655:64-$&%\" '*;9/(+ZZ9IbjGEֲײٽF^]ùҾ\\Cp8,& (# #%(.&-FG;>SgfjH@<;WޱƻBYK8/7=GF*9GBJŵS=<۹ûYG1&-HD=BIlPEI´ɬO;6--;M@Oe16>Lud<m:07'\u001e#+14:DB:?8>xEYAEN9A9)%+/;//QFкUȪGhDJ\\\\37U30=?`G:4CI?:3.7K1$&..20%#)&#\"+-&&%)/UK8<D/-0,\u001e!++@OJ;Lžiܿc=nB-/.6?/088XE.)1iL;IIJb5'$!\u001e\u001a\u001d\u001b\u001a +,-5AHwì]oI[ȿM:C>DFLUU4;07=OTNK</8IW;-!\u001f\u001e \"\")9@±ƲǺdM6624-**08I^B=[@>A;..BB>K>D71174:=5:lo4;8/6>-,40,(),1>ȶ:/2<>99,==.+*&--.++.% !&/;2/+/5-$,-*7,&$)&)*:8KY:5=̾TJ6?KTO@<fR?7?]/0,8RdQ<<RD37%$,01*&(+&*%&+))#,E9?ӳkQ]CAlF68PL0;M@IBJ¾/8LB9eH604+--&#')# ()*..25M\\NAɿZQЪ¼ݷN4GbXdyr˾ľ84../.%!\u001f\" \u001f!\u001f \"#'#),/*,=Fbî8L¾R]C6A8/5488<@6+-,).-,'+4*,+*-/,0-0D36HDIJkh̷۾oA4496>I[_}I632)'# \u001f\"\"%$)'+4*,18,+;;><?ZN޿CNSB6/-/...+(*()+' \u001d %%($&#!'5;:<J[˿ïɶʺõaʸ|G<./YLE* \" !\u001f\u001c\u001f\u001f )$13),#%+8VH:9IнSµg÷鿯\\kL>5*7GIW;./-)'&$%+*(,(*!\u001f).9JA99[CD>:HNJR»W=RYR@=?UICK001%(.+*+&)(*5.124B=A3+0-$/3?TR帼wǽκO=::.-4,&%'*'*& &),2:1.-94;EKMCAMF]<<GgSNKOѻ¯[=3-(*$$$\u001e\u001f\u001c\u001e#$!#\"&*()%+1=A;9JI=:6@><>Klvxcƺl`D9(.,&% #&((\"&'(%,FX=>6.2-,,+/7<M>?TKֻ׹ʴηµνzM82/9320/:E>99:@E>7?@/-.*+)055@<A>EBMUe˷aNCMr7/216.'.2--1.0002-+,03-.7<LYWRBW?6KPeg߾^ٲ[<<PH;+'(')/,,)$*-00**%!&.--*,2?qG\\OmPBGʽÿƾ^=11<;377/)--+,)0,+++.1<0>WIlaKE=AD[ûSTV½׿[@964/92(0('/-07+)((,+094;=@\\==>:D@Aº»ķĽ^M830:2:3((#&((-22...019--9>A>:,..79:GKLйڹŻHhƶD73<?0+' $%'*+4069853*%&-6<663/B=:59KrXMHWl»K@9866E<///4?203DgI>8G=669LCCCPRMC77W^>Y_HXWDFHAQU^PἭչfUJ74.39/7BYY@51:;>7?SWg^SZpUTNYI;OJI<.<8?[gݿk[<.64=?A>NJ9224MJG_I>88G@?@A:GNH9/.0MWD99P[μNKT7:43<GY>FOJ\\B8.2CMGmP?5/37:NF7F8;==;9?]pI=9E`½þ°pZTRiU?;8?]jVRlPN@;<8GMJIF874:>?E;:@==H<>FOg[YQQNlѽdQKJHSIJ@?BE;>?I`p{NAKLZYLDD:H:6>:;<>B?=6<>DMTn_R[ʽʽS\\qEA>:<>70AfimmY@GSCFA>>4F98FG:7@D=CG9:=DLALMMISau~OӿƿôPOGELTiKAIMN[`yxkcPCBFQU:<;VkLWF@=>:<=:=FEMZI_Xͻÿ|R_G>DC`^wkKLDZj~^ubuZVbXMO^MAqNLABO=HHP\\njkδżýiJJ@IISoQ[J;?<FKNKTPO\\KIRgQ\\HGHOAI_SECBMLBC<Hqս¸vjdilf`[~WdXv`^KS{OXaAFLGA?@F?Q[>I589505=G8>FH\\agV˷ɾѼ_NWSDJODH@=;:AF_Pd^><;7<PXY`K<F=>F7<>ElLJJAPJb]SͻƽƿfV<NM[H>?:?tCPCBQD5593DRA=:7036?F=;8<ATJ=JnnоķQH?RMRMA898204UYVCIB<@><?C@<=500.6<?<?87=<6<?JӾMI=LkWJ?C<935?MMFF6844616<:=7;<48;6ZbX?7;56B@rƿ]ӺQLA@CBD_ROR=;<JZOKA<B=CMXMF9@F??HB?KUPF>53736?RYNQy\\^gFPZo˿dihUKIFGJ=;9=GMPLPBGAPXSKQFM?935602?:?O:>AKQcWNOOS\\g`rǸ÷nsKE87:=;EQF?995:?BIOKMCD94416DFONIGARKKn[KKIHJHOLbĿúXPLC^KC?=<527>FRDGG@?86ABeVRNC@:51?Gd_zZZ`MEƽssgvlͶsη̿OO\\_]F;@;8@<:?B[POIIG;4;Hy`LGFBD\\end_MKBEYqbAJܿºNEMG>CLI@Sm_RgNMM=00AYUODDDPILQ||^hZSH:Ms\\YJмŴÿƾM9>c~RWJKBAHad`N;20-1NOB??=:AC=NfOKCECTýþӽú¾Yb~mS\\NJ88FMeH<765;@RK?=<;9=>;RhUI@72>FJPnaR÷ĿŽǹúϾyUB=FmHK@<>=>}hHB=8=<<?Il[RL:;98@=Li^WjROdpXba`ĸ]gJQH;>IJG?679L>9JOZ^LUGFH==JUkNRf^TNOKBrkOIIKRUjɴƹdPV@=JHE?9457>=CYSeI[RSk_¾dY|m^o^JMWpK]Y\\dQFPֿ[cZAHLPAG;5=;68;FruzLESȿÿʽqxjSW^u_dD=??@M[S_ovxY\\JZ^ObPHLFAC;@<AE>B<ZjTYNEb˻ۿwu_fS@JIJheLbegnLEIG>E:@A::;:<?AAHZH]`kǾid[lǼun\\GGHJHCC;<<<:44542111:A<A\\lkOPiL?F]Ͽľ]QehjTJcI?B=GOII975:53352-.,/697@Dls_KFU\\R`kfNXļûUXMNTTeVbSJQpdOTGD>D:9<;<:79@AA?CIPKVYL]\\d[PuiPa[úƽvTUOIUpmjtNMMYcXNKANN>;<AJDLMJ]YIPhZz]act\\T^Żrii]_~^[@?YKT^HUXzWFCF5?>?HDJ>>GYOZIDNtq׿½m^NLSKKNL@;>HEVapUMIBJ>=AJC=9E=NSKT`}djĺXKECDCIKAIA=DXgn]MEFL<DNHINC@EoTX{YPl{ý|N?<:9:<HC@E=<@EHVPIMGIDfXHT\\pud_ss_ý}_X^^I?@;>GBJHDKJJPPcdP\\PA9=GL[sNM_Larbf]ceTIUV]JDDNLSNPNPGE?>M\\bXWPMJ>=@GV\\NNhPLDGQpdQGSX{cHNTTżk[[YnfWCHDAHWIDC?:><=H_j_h^aPNHMeSIKKG\\hiaJQ]`oȺXOn]LC>CFTJM`C@JBJ`xYKQ}UB<;9Dghv[XkL@P~|WOSMRĿͽŽqgo`]K>@KJZVX?>=6=MUYl[wS{lLLE>[shPip_Ndbƿi_JQjb[SUHICGJPUmNH@CCQ[[]TZZEFDGR{gZunnr{`LH\\TdS\\UF?;>@<FJIYOMUWOXmRK@>A@D`fh^eVTXƽǽn^WKSRMZV|\\YPC97;AJJ?LRMKSNJPD`\\KEBBUcl`tx[nǿkMNFM}wY_jiPPOYWNMFCDAJdn[]KVg`oj]aZNVsbYVlXVTs¿Uj|^_kRSytPO|gVNJGRYRk^`Q{o}ef^g_WdP\\\\OML[RJ\\DPNPhcÿÿSRKIUVW_j^g{fq\\UNMZP_vnh{aTp\\qSPRIGCDHDDB@C>?DHYǿf[lm{kZXeQPhTiPljfqvyen`VXgYph|YMKMGGSKKQFEJJYO]bZVKYloef}vo\\jjVO`joZ]K>ED<AHAFL[XKaZf[`MQTV^xaXZl^ckKLG<>?DIBJEBMSNVNRinpm[nx\\ku\\\\cor}Zi]Zy^bTRUMD>@XkhalPIRmjhubN[iZU[ymSdwikN\\[]~OSbNQSt}\\ZZrgajR|ZGQbhjXi\\V{]_`MKvhZf|s_IMb]SFJ^VQf^e\\INKCNZy]BJspi¾jWJQl]]nL_zKH[ontdlVD>>G\\gaNLORNKVPjN?LZUnjY`uPN[b^}pQOXV^o]˿ZLEJJTIU^JK[POLMS\\rZTOFGC?KJZdQRlf]SX]{]]ckɾ^pk[XGCCCDISNR\\^ONNN[bYPGEECBKdhM]bcn^wGCHEOcpȻjZmsisZ~b\\`k[Z~Zc]X\\haWU\\ePOTPjmPMPOZUXMkmVMFKHJ^MevZļUrshZhnZxWca\\IWhbhqT]jji^_]IIRWPUcgS]fZOGNR^\\ZQn_fkLMd]belxil~UPgS]vv\\\\eaklc]TJEMm`MVjjt_YNLJ^{x]SN[ZZhz]\\ie^osaWfovcNMNUR?BRYSa^zdxpZTOY^m_PAJeZufnh_YN\\ojiwOHHNZ\\j¾XLESle`OOV{oaOIB=>HKQRT\\OU[Jb[YTKE_L^p^_P]ZnżpRLQfg\\_LFNWpcNK?ABBILXSJMMMRGNOQIGOPTccfg\\YOTȾvjlhMNKR^TECIF=DWXRj]nm^dYbVRLPH]mhilnlSpn_`]SVOX]i|lUpp]VYLMKMbblu[O\\_xVZ_fuqʽe^JMLS{XJ>HWTf[^QEJKj_KKLY_ppv|g[\\QSFNVRtǿljT\\wcIAAGDO}|NKIRJVa}^PTNUWj|^[QNWVUX_\\UMKNIHOki̿}pcfsRSTXRUmnZLRPRSTgnX^egu{mplzY[THFMMOFMOQYV]\\tnrOUPXh_^UX^]Yz`k^]`bv_dofk_WdXTOFIQFNPfdgwvv}a`Veqe^[]T\\Ylei_uwkaoaYMQ\\g^fZKSeYcjljwkP^^P[boonbr\\u[j_moQFHOlj\\XQZcv\\`XTgi_]aSKV[\\bq}}y\\fxp\\UUWm}efr}mjYSThyxf[_gh}pXvsliUSQJ[^l~_`k~o^_[ryo]muionKNUSXX_lmkUh\\SWOakhp]jTb\\kh{teW[{dYXb`MKC@?=EIVcVVzo]YEN^okxRObdcffj]MYZw^_l{WYZtTLC@HC@KN\\bjp_VPjza^vmZhZ\\mVLNog~|rxx~`eVUJGMDA@AFOU[UOFIOPcv}smjOPPStl`y~prpe\\qSkRFDIJ^ufai[OVQz~laR^yeghbZtWdZP]tl_i]aywg]UU\\cnskaXGBGEK\\zdlh\\qdT\\fygVT\\WWOUsZMJNhxd^KZ|XIE?HpsmX^YMJAJ]¿h}ZV\\f^yp`RJQ^`UVdlv^TKO\\ngVRIMLWXQZd|nOHDIPZure~ty\\OKT\\xq^oie}sy[[NLUSNNUQTb[NMReu\\z}k^hlrznaaXSLY[po]mYhwd|qfYQO\\pjZWQWnkhTPYb[{SR\\mpqsmlSa{|vmd|zUWQSYl~okS^wgQNYY]\\|[_sMNKHRc^TWgsjlYZYVekZTSdpvfXSO^xaiwlnacYXrwUROK\\[v}VRWMZb^t^X]Zaj^a]fnlg}cS[W^|ggk|esgpznYMKS\\s|{~e\\ciW`WdmVTOPbsiUJHVbunmmcumdNIM]eqncXV]Ze}jeseaZVPTX\\ky|lj]__m}lXSRQU[Wje{QNTO\\jjl^`Zamleynp`_o`Y\\`ckZf_ebhzvYeo\\ku^kb~l\\ZU\\kzZ^XYX]idoirs[VTbodmYMXUlTXWqweWenpibklh`Y^dvdmrnbZ[x|jmvnZg]jhkffva[[csgZ\\apu`hx}t~|bYYYd^g}ccizz]U[taZc{{le`VyyvnRR`rk`uW}qw]WUPumk\\i\\ZYHFXshn^Y\\il]m~`f|q]_ppg\\[nw{iaVRGMOZrn`X\\bPMLN^oeujwie|v`^VNMWd{qynwvg[QOOXpfURKGKLMVXpez|ujXdZ]x\\XURVZak{nq{mXWSMO\\~_ZROQKNWcfcggonWZtgZV\\]\\[koxugWOUOLXZ^^c]\\kr_QNZfm`YVXZkexYEM_n_bZU\\sh_PCAO[|p]WOKSWUdiY[kp~ki`W^]\\VSZwjcl`^hZNFHPU_zrgZSU[Zrpir]]l]^`\\jjq]dxou~vcsndr_^MLQSW[^ayd^f^bh|vr`uh\\Xhxc|}_^^nojnmd^VMMO[ZVUWg]\\iZ_caxogjxau||nif^f^MS]]zacpsnnjsh]W[c|a^e`f`c|fshorpm]`^\\|xok]dijfZ_VSYfXRSORizleXT\\Y^b`cptxs{dlgY_djZcd\\^e~Yd[^[YYV^f_jaZQKLRYS^XWWgd\\]gZmtttermtkdbtxkmgfshhww[Zj\\OX_ZYQW\\Xl\\gqh~^\\{yh[cu}nvrvqwqwgyh]msnbr^kznbhle`ZUP\\pflpslwexhydvs{{jbd^oycqoe~lZZU]a\\dbofb_PPWmv^ubut~{gp{lzxut[__`kxynzo~unf[a][\\ZmeXONUTYgof^[\\ihfmpvofh^loc[bmldoi^Ycwsnxg^YUll\\WQXTUZ^k~^W[olykwd]W[lzr}pidje{hw{p|kx^ii]`VY^QV]f_XUUZ^gqtxxmamupouzlvlqcTlmnlaZkZP\\[|~TKOV\\^pqpp}pcw^_NUjeeno{ne~mopr_Z\\XRTYycYQUchzscf`kvtr`Xgaisr~ihW^nylovYbf_wxnkkjOLQWUfl}]TMNKT{_RMY[ayltZX\\`c|`U]|{af|obduqPFHJQci~geZQWONR[vUKNNT``ck]gfZ`q^PY^xff_HHJN[p_YWTMMM]lx^YWU[utdikhg^a~bUSYhi^Z_u|jkROMXhtc[_TNMLOmyn\\TR[ywvm`k_X^eTKKQomohmaSPWc|[SNIGLPa~\\^XZlrliualckie\\is^`OVY^nuzcX]zl^OSNKTYasot||~ox^`_kctvnhc]a]]_hivry}sf~usv|idiycb\\ffWZjlisf^c`irquvz`nlxa]zokcnjz^Xuhgm~yp~nfYTY_z|^ROOV_cvshpg[X^rclytozdn}u}}l^Z|w^_fu_\\Z]]|mPSXZbdsuxihgg}vYWjosmmm\\hqpyneepgfjnzn^]aymxween_blg_bnpmffykynszmdiwnlcfnej}m~rpcXVZ\\u}w|}}rqgc^^`i{rs_chdiyy|lqiqnssqhpm^ai~~lryznl|l_X]hWS]]ml_\\^]edcjs{mjo~yqrmanwytoggztvaZafjkZWYZcebdfjhpob^YZhlcy~~ie\\y~}u{psj^Y]Z`m_Y^_cm_jl`dmtb]_Ygrk{p|r{l{lz`\\[`n{ha~ng[OOS]ydbkk[]ajn~|ol_a_^Z\\k{xgn~lV\\[\\mmjswb`WSbq_a[Zjai[QZZYd]Qk|^otdnjluej{nc{^\\TVpgff[Y[zbZW`kphh_bl~fYcti}owj^qor{nb_ckm{_zcZ[^ktb[\\endVX^[mvsmetje{mle{zimlqirlpkeX]mpn_\\i{ktpcdl[VX`jogsxox\\licn~xkmkjx~uyfzlc[Z^jnke_YZW]XWf}ris^ownbj~^`cf|~zorv^[[_jon^Zh`aa\\[^lmn`jzu~wz~lqdwnb_g}~vpqlqslw}migko{fbphi|rm_hecatwznnvn^jlzm|nZ]x}pojgjxgWg}yjbnpoocVUaxjaujzZYepwqofnsi}c[Wf{xf_ek~jdmxnz|w_V]~s}|qpi]gjWW`tvug^kbX[n~gkuhoifmscj|^`moi~~hefvk_{zn\\UZd[ewkrywwvoeiumhkqsnxmptl_Z^jkzfiakknyeZXY\\mwp[^fejl|silfi}xxv][Zgnzg]W\\h_d|lcaksgqjl|gejxnmmdljq|jhl}`[hfxxk_X_akjiw``bquitfpodev{obtprzq~~ysgjpzvwmsbinagg]drz~rngiauqjvtgdmumtgzlmmjyjg|^Y]\\auqnnnec~pe`\\hsn^ew}chbit|sfmida\\`~rozdomuy~rd\\__locspvl\\a|~|lgj\\]oo{h_sklv}bn}f^i~ig|vls^]mmhmlojijpwq\\]elx`hvbm{kjywyv\\][`jhd_|um^Z[l{sd{rklZpl]OPYa`_bjm`d]_lnnof]cdugb_cwicf|gornrkr\\XWVap~gWW\\due{|yg]`kzhgfnzrxh_]b}qznsmdjnkkr}tonfb^pttyg\\`ymWb`h`euqnnoo~oc]]`lhdak}fhi`v{tuxonxx`X_woipum`c\\ZZS[kno^inns~wib^lih{|hg`jvqb]lps|xlZgniig\\QUWVYjnrwj^]bszmrsjim][djfgnpb~taXUXib]h]W[Y[XZmx}kgc\\\\\\y~uiciyxygzld_aco][XRT]kpjciwpa[ZZgmltg_kefnjwl_]g~}p}ialvmbbmonossogWSTXmqowf^chca\\TXfw~ldcanuwopa]o{pkxoe^[olcefjrrrl`__bbecXSY]bh\\\\hslgYZi^fmp~phfy~vk|}~jjxxl]]jzzmaZVZb`ldZWU]folXYho}{\\X]gqkhumbf|lnz~z~zm_^kp[[hptfVY`krse]\\vwaX\\iuh_iabxp`TV_kjxxogxd[nzngful^gd`goaizf_gf^t{kl~qkZ\\i~|wfxtgwulge__uqdolnkfilwldflumm`b_fpeh||iam~s]cd`wf}~m`\\otepzonfnj[[[f`eggf]WYtwcY^gyj}j_fsb]^etmilpgm|^\\[`guf]\\_j]YW[jjb]\\]k|~hho~izyumry{guz}s}h\\[\\^gsuh__`\\[^eg~qfe\\TW\\imjqnokmnzvxrjl~{_WTXgv~oljf_ZXY^qqfXNNWju~o|sldch~e^jyr}jqnku]TPX]ivyolf^^]XW]pk_XW\\m}vy}m_[^kt`^almnuvvzy}og`gsztrxtmdaelimzjdffvzmnroidfmiuwx}kkt~njsow}zlowskmln|wxompnrtsodjusrlgqtkgkvslhmz~ti}lk`fvt^]muol\\Z_wnmvq}g``{o_dgr}onb^mxwrlmc^_eujigeqmieac}e`im}ugblla`hspl}qtobngkeoodbprkjtkhsmindn|zmylsnnmlhx}zqjjgkikjnlhs{{ww~nsz~x}rjjkutknmkopx}q|lhjj}y{e`nm{}zkuvoxnnwrgtpputjjwzxkeZ\\]cmsn_^cklehdeb\\ekfnihy|rfcxiizs}m{}g]]gh\\_]_dgje][VYkeiii_ewtik{nows{y}{tuwuohlola]]W]pphfc`cjdgkefl|mpnvxqpzxsroxvuh`nm`]VZb]acfmuj]bhgnmtpwliuw|xgvsovvu~xieb^jmknmfa`^XY[^jynis{zr}nc`dusovq~sqytpy|jl}ee_g|swjdjka\\^]^ptekry}gdjmqmgmfimny~}pz{shX[jwlcfighb_^^f{zgkrnowqjd}unirku|vw~zs{uui\\Zgquonplbea[^fimsom`dwtliytq|{zynnsmt~}|nfafl}yvneedgbeozjb_dl~tprcj}xq}}nlkxykmmbkswy}m]_imx~xwrkoor~|xooxnt}plhp{~mo{}zkhnspvwvomohhlz}{nb]cmnmpnnxxw{p~mgnhiox|ms|lmyvovou~iciffpplijocixoq|}ynvyw}uohm|{~}kdiptmlolkin{{zu{ymolm{qm}x}~}sn}uzihsrn}td`bgvtgdeekvnkull}mlorz~vzswpdiy~flxyvtmlgijkhhmooosjxxttrxlglipn|oywpvmefl}omvuoikx}{jX[p{st|mrrev{|pvod^bsxulnsqsuyqunvvm}nlmuknd_al~|vw|lot{qyp\\]j~ro{{bZ\\f|za^iylvxvogmuyvquurpu|yrsqebhp{m|rm_\\_el{pdmzynrmvteiks|inzmljvywiedipqwrkdcs{okksf]]d|kfp}|}~}m]ayrr{~s}{kepsnmjcemysnuspynWRYfynzlmyy`]bpuwmgewqblzn_X^pylv}pqhaekklx|qunvhgslq}ykxokm|}zokvzo{yg\\Y^k~{{qpxxkmz}pt|okljejo|puyr{pyzvxx~qvt_[]adkxvkvvjpvumin~}oyxq`bm{wmm~}rkzxqjl{lgdklfhy}moxkfkmimli}qkozmd`{kesrdkygswoa_^dy}ppv`en|qv{o}{y|wwtonkfkuk`kvmyyf_izid^ak}~|philxolhp|nz~yxhfkuouqhjrll~vru~lmyuhlwwwtmqph^q{mllp}ooy|{wsushlytoizian{rz|hzxkjyw|zpxnagwmir}~x{u{yplhuy{s{wlp}wo{zmt}gap~wyxs{tqnm}ngbf}fez|rkglfhv~wugcn}p}hmvsiade\\]etokilsokq|oe\\]ppgflbezyrnq{|vnnmoiqvnmuox{qp~znn|kblvutihmronygjninyigu~ylmysnhblxkdnu{zwqyuoz~nkrstvzinw{tkgotykmsn~{rv{kny|i]`krabmvxshguuuiaawroolurrhahpjl~|r{xroky|`Z_ktn}ofmyx|idl|ng_dryaYa{jfo|te`lmn{qjimm|lcgyphhkw{uot||y|xmkqqfdgn~{xz{~{w~}ml__pyrxqlcceojkltoifc^gy|vp|}xkbejkpwtjhmxmbckkoxie_^f}uhejjg{poeefp{~}noe_``epfj~yqvxmakokjb]`owlhddlsomnhdptwqywn_\\_nzo|rp||tmrmd`gwpmwsrtklll|rohhzjnx|xnqmgsxos{kmwkiu|nlogcf`_e|zxoj{jfdmwglupp}yxogacs{mupx~hafykglozsijl`^kpysn`eu{|ukc^fysq|hh}|rwwm]ahtywmclmls}ngaj{xnt~xwztrqo}ilssqm}zpqv{{gbnulrwhjrkkjjnlmypfowp{zztbpvm~qxnhqpx{{qfhuqt}jiyvp|yjivnn~~ymhiovqjywnnqfi|}hoymrxlmtmqujmw}fbpkijj|l_j}qmuponlz~pehnvpffjy~vkmkbh|qo}}taYe~rh}lnt~cojlr}}dho|zmh|xzmm}kkxvs~momsyqmr|vvn`fx~t|zupuregl|}w}~zy|tsluuhk|xysegosoxsmoxw|o~w}z~~zpmlinoonlv}rvylou{zqa`nwb_lsorkhv~zvx{{{ssv}ns|meepyzmytg_e}|}j^bv}lkxulim{kk{~deelpdai}my~{ihtsdfrmbbrxzphwmek|plgnzqxpqpfm~vsub\\aw|tzzhal}rcg}|ttpgeoif_]gliimrpm{qkus~lvndbgxxrp{ofjkkr~i^`cj|pkpxwzphgvzsxj^hyqnxg_j~u|hgdg~nnullnhku|rvrmpuuzfm{sjnv}qxtptleesxliqlhnuee|lkp{z{iiw|wzq~pmpmv{woetzihfhkvjjqibgmrrrq~~icah~g]_p~ngjlj|nfnytnw}lp|y_`mifl``epx}i\\\\gz{|qntlbhlihddkeem|yoekpm~zm__h|}ijvsjcjtotxjdotmwphphcmuxwyddntiiu{z}n]_emztgk|vyrc_fuwtfdrzwijgjox~rp{zgtnkxwst~ghx|ieggjffw~h_Z\\mz{vjpx}|qiu}upymb|k[]e}wy|~wzhgpskkosxtrc^bm{hbo|pv|ifp|{yn||~ua]jswwmx~xh\\^nzteenl`mvmkwxlqo_dntt}qqnoidl}{oqxpg_afr~ouukd]\\hpomfk}|^[cm}|}vwp}wcajzogclrrqypgeis|n`\\``ali`izvmbd|{mmr~og`^csyvosx_V_|nmpnmg^^hsikirnnptlfhp}p|tkospnn~mgsmea_dh{xy{ousnw}lhikqsupihv|lb[d}}lhu{xkdows{sww|{sm_Z`s~hc]^r}~zze_esuyvlo|vtw|xpedhks|qnvxzyqqkkpx|vlmjhlispku~qliirwnn~{yznuxmsrumpm{}smqxnhippkusqqrkcef|x|yorwuxpovxympvzs}pns|uyz|~rslekq|vtpwgcblg`gl{yw|pkks}wmrxmp|u}rlnopwx{uump|olyrx|kny}uhp{l`[Yd{{mmojiqymyzlnpv|{xzjbhwy}mabmqstoms}xcciolv~wx{ygekxikotnt~nsusxmrnd{oe}}no{{ke^cho}mhmmiejts~ldtscewllz~{ucalouyz}lel~igmv{vxnin|h^bfizf_ahtrsmjwgiot}yeal{vpmtmni`h}~~b]ktynyjcqskjkrw|yqqjvttt||z|}{uzghpl{mfrzstrpnilv~njz}}rnxrnq|pfhxqmylhwso|wmcfvznwjgvywyf\\]m{zqmicg}{ope`l~zmvz|o~tinxogjopvq}ykekxwsoy~tnztiiqskwysgk|||yxsoju|qmsnyommu||~|icmwnomiky~nssomlw}zslnyvmjw|usmhhu|{zzigivzwhjl|oflyulzxy{oip}xx}okvpzzxpwxtxojwphrzc]ds~purfbj}nqnfdlt}xr~}zyhguhi~u{mmwnhmnkkozrxfhusrfczkipsso{wk~nloolvyzafqwgevqksihjmj\\ez{lp~pkw{m|i\\g~pfo}v|phgo}}enfddpzxcY\\n}ihypdqzy|~pdea\\e||||}uo_bvmzumfm}lihzqomhf~rlmkfmlnuxzkrofl{bizjcwr`djr|ylznejsqonhlvpfbno_Yaydizmiq|b^tqp~woob]iggwvmh^`rr`Yf}ytznqpnipwgnunjg]cytvpqxkgburswuihornw{nfpxk_d|p~negospyvedhqlisyruw`gokbltljn}ddmss|~lij~iilloupylqryl^hw|rzxcgqmeej{|}okumjcht^\\au~spmijm}~srjkdhbexyou|ysa\\fxzz{|svzqh_komn}iafo}{lhep|stujg``kt{~tsttfhntlp~yohiztohqtnmndagtvmhei{{{vz{|jwyjiqmn~{}wmmpsja^dwzpnqs}mi_ctpqug_g~vqnkhdv}pxvptynf^gztztmy|lx{f]bnnlaahixhcs`Z^kvrndj{zxstkndgeep~{qacvusg^`m}zy|}klinkad}zgfjmgl~nlnx~t}p}}ohtsnighkt|yxxgnvrichw|qsknciin~umrc\\^luxlkkjr{vtclxqiaemz~ph{w^X_p}~z^\\_anmkpd`_htoy|x~phnswpqrf`_cnn`kuhajvmha_mxsc_^tkfhjlgnztnmntltppguuopoijx~g^d}}pd_jy~m~}qfdbba_fqifjhppnkkr~{v{vkiw}h`anxmjqu_^dz}zhZ_fjhfgpr^\\^dx|xy~znznkrvpk_`dlbZfd\\]h|yvybelna[\\dqrlga]exk{sjlllfmthficksfd{~olmr{yhrlt}gjspf^dkp^[_hofjp~|v||qfhtf_]k}jdni_^cmozn]\\_e_ipzhd_ciqyz{ppypjhtrmh^`cllb_lxoftpm{}gdmpnb\\Zal^ab`mmjxrumnqonj_cpm\\^nx{vmlptpm~ljjb[]ene_`ju~y||kl~kclv|jxxtofc}ocgtnovmhlro}xzihjhhgb`nn^]bknrg{|yjixpgmsmmldki\\\\al|slmoly~{z|ob[_ebmhZX]elrvzzxlknyrwoli]avtkeagwuiijs{nn|qshhpfaf|m]\\_lmnjq~}qffkmq|umujgnyd^^nuiknnrwxxlfccqmknh_^`ejxintwlmx|{nmlgpqxzyf^\\cnddnxmip~rh^a^^e{p]Y[ckvqwqmrvurmo~nhgg{tk^]_j|lnurlq~k`[`beloc[\\bkmswxpmkfen~wjhp}dYZfolk|}seilxufaalumspmfafwnndbfnw|lifjs~r^]\\exkjrngf^\\_lm\\YY]z}nd_ltb_cqzrlkxsrpf^`nf`dpjdg{wda`cjnxla`efhfhln}rvxkihppon^^g~i`\\eqea_jtb_lxwjdhze[Y^sfZ^rh]ack|hhfhgpgbeqpgn~qc[Y]mnf_]`ssnwvqcctj`cmbct~e`n|~h\\`jwr_\\cqbZZ`jpsqwofn|rkbcenlhvg`_lk`_iw}eYTa{eedktm~yj^X[yvyi[Ze]Y\\ud^`h|~xj__g{qz}ngipfbkuzujj^\\]d~kf[^qnk{nmcfq{d`jooumgi~xjv^V[dxmusc^^hocesvmlkiofe|zmncadiih}xf]`jh]^fsse][s[VZbmnmx_[aur_Y\\b~^X]{]Wgqld_hqgrinri`dl\\\\i{~bW]s}g\\btzj`~hiulm~qkzpq]\\hrbhvtjf`_nedl^Wbm]jxcgldniiwvuvpfnyn|qtuyd``gkapvptzx`^[\\etzi^mg`i|~{]X\\frkhis~~quga^aznbpl`km\\^hwwihkd`ni^bzrmefglodegpyvnkp}{e[etae~tegra_]ddi~lefmk^]k|k_]gohinhgt~n`Y^j^tvc_s|`^molnul_ekiaaboppeex~kgghr{wv~tffb~vgarvbjk_allgplqtn_Z]jzqtslmz~jdhjntw}rm{m\\jssvrg`jpfdlh_fuqola\\]evwm}p`akxl}}mrqigwjgnm\\gqkmty{xsn[\\]]lklh^bmrvurmnndcozi_h~s~ziejgbpzehn|~ykij}pc`hlwjfpa`fnc^lpifxtiflkcvh\\[jmhkkk{tgejs^XWelZRZs|n|a[atpyxjjgetx{h\\]ux`[[iwnwsgein|kchja`_amwmbc|xlux{~|qmpn^^h}xzb]cum]aj{nbfv{yd]ak_ZZaiyg[ee^`whjg]g{ibgmkok[\\d}hkia\\^lq]V\\nnq~r|}lgjp{|mfc_b{nhimjpulcdzf_koimoja_diqimnmd]mmcn{j_`f~jbvtrm]]mqwxoy}ojktmsn]W\\kb^clwocdu}h]gtj^`na`ixyntq`[ey~{{rbb^k}pknv[[dxj~xggqw|nmqlghk~m]]no_W_df}wj`hf]engblj_^on^h}g_cmknmnioxlpw|iln`ftjnp|nvkbbjms^W]qr]Z^]mjkwnwcY`{zh`dflg_iznr|iZY`iq^cl]\\jidp|Z\\`dvmk}m^`nzmfg}bTWon}~ms~\\Wczi[byjkjggbcrl\\U]ozo[R__Yeg_b_y}wpY[zhZ_o|~{yuYSgncWZ]noep`VYpncia^e~mpmb[jebq~d]nw]ci\\\\~gay|cdojiw}mlkbh~fu~mvla^en[ghY_wj{__jns_]pz[[juer|gZT]t`XZod_wwmf[[zmcglcbs|kcptjuaVZdjnmuegdbogexkabsebyn_g}eath^^fu{llzmtznnfagjbk`\\t\\T^vysnpyvhmxY[hvwgXZyzckldi]Q_vyz\\Xboi^ifYTUi`X_w~_jja^fjjw~vn^V]|sxulq}t`j`X^z^_yl|n\\XZ[`}a`h]uxhpuii^XYcq~hpofr{rxi]fvz~cp|j^fj]g`u_WW^wehjll_h~mqxgbmvveW`vgcnyVU`sk^hydt`Z[aczt[^|}mwmkwhlkbdipxr{eW\\osilywc\\_pl[]tm]my`Z]bftmbp{dezm}kjq|plouokgUWgtttxt`Z]}i^ewk`rk]YW_mnk\\ixpsd]bs`]dpokgm{nejj_ej|r|mgzm[VatiyfSRZdjrv~jikalqrnto_\\^qjSQej[_znizkY\\kplnn]`vjhfZTZlhe~moqnrg_immiki\\^zd[^}eg~eg{zh^]qfY]mu~~_VRTftm}^`tlhljs`_ijiq[\\fwsjfnvlgbjbX[k}jz|ed\\W[nghzlio|xnyl^hvhmkWVgz}ym_^ntc\\^elnhmck_VYhnwzbuux~~ypnytrlgwj_\\SW_nj|w\\^ji`hsiejnz}z^NPelszmchwznhjrzlil[hxnb]diert_`|fblumdbgginpaQO^zfgvwYT`z_]g|qn]SWhir}jt~lla]]dn{stz_cq^OR_|hph\\ipiwu_Yi~_^}m^bb`goxf^hoa_`mtaZ[us`OLXmurn]Uc{hlkcdqv{z]V]qg|khqbXT]fpmd~_]^[\\_qzwf[lg`foz[VejmfZVWWygfxtuudd_bo}^SRh^RNXs{c\\_zmfispk^eqq^i_X]gshhyi^gy``_aeg^co\\VV\\y{~djwme^\\f{hggl{lZPWwrgfnszxd`dlphdkvx{qijc^\\Ybmwe]bfy|l\\Yfsqkxkhhkknnahleikn]szpxfXZpwjSNQZmyrxjqjahvuu}zvn`asxkkjWVigcmpk\\ejdgt~egy}wb]WU_gmy~njZ[^_{~zek^en|f]d|ihkw|wXYp~}j[_irpa_Y[V^xnpk^lpX]i^te[np{luiXT]wfxnhqnaXgg\\\\edxjWMXnui\\csd]i\\Xykcxk\\ui^Y_jci}h`]YUyzbgkV]i]XZe[ed\\Yootc^h~otvb^W[l_qo^ghtf_\\ko]f~_WhXN]fZ\\`ws[Wcw~p^^in`g]Watbonrv}j[]jROYc]`~viacd~~tvi]h_Q`{pd_]\\p`h{n_UXrkc_`tuk_YXpmZWgogkzgV]fnnlaw]pflseqnijd]gta]ntvgpm[Z^^Xnmd_exldluekuw`ksh`dZZl_bgzge~sceukZlxwwryxqjjb_cqr^^k\\\\~wx_[c]nuYVi\\xoW_|r`i}]`]buOL[_af]L^o[^\\_yb[]nyKQtxeln}g_|gm{y[ZZfnQYTigZXd\\a\\N\\kjO{qcQUX|]`[V`XnZ]woVNYfZQNL\\a}R[yaKPyj~RmZTmo]Zxxoe[aV\\pNTsd]apnNJlyyr_hXYomZMQptVNwt^\\VXxdLUqahwqXQSY^[by{\\Oa]Xbdkpy\\pUkoTZgj~`k]PV_le\\PV_`fcmWU\\Uh`mXIJzyP[lnQKk~}pQn~`Ogch`q{k[fjro_[lj_fovnYSZ^r~VxY]`dcVbjXxsNOXQZdndataTWZemPTgrptn]q^Xfwb^xZQV{l^v[Ua_k`escV]xOLN\\qV~gLRgY^jh\\]NJ||i{`\\V_Yi[Ula]OQ}d{ybTUVmybTW^n_Z]ce]kymKGYzW[wZLhn_Q[u|]m~OH^^xXvXU~zkS]m}ofjfY~dhTVhcc\\ed]xpxd^dSM^^jY_hNL^OdthUxuZGQk[flnYV^Oax_mc^m_IWhjtU_eVUgUj[zaUlmZOSjd~XMVt_XhqibQbLOtcd|}QOaoZ^fy}jd{hg[}~|nc[]fqmzz_g}hvffj[av}|oW[Y]|i\\bb\\[|t^UP~i`wh\\YpZ]nyb]lVXgzlyb}h{[_idxfklqxh^n~}tacqskdnpiqbrzabemo~xc^_aamesprbf{oZVdv^gy~]QrZVu|j\\YVfgp{x}Y]f`f~}sw|ujk|}ig^jwt_jrx~phedmbhecspgUj`YvoYWkNXYZXYeOUf{syYQrgihimaY~^gzm^z}b\\an{enp`Wz__v{l[YjvgycRZ{eW^pc^bo_YnlikkgX\\cVw|vs]\\i^_lm~}n^\\zpY_hiod^\\ly`foaaz}]gxf\\kqggu|g_hcXfk^ozg`vdZ]nbp|i\\Xnm^ex{^`mtkeowpYkf\\k]^go`kmba{e^Ye{|f]sxTUoXxX`au~of[cZcqLylnhezZcqkWNxagjSYm\\tushlwk|_npbkgj^[^mpznyjXqWWaxeoh\\`zdxdm^XUZk|m[~q_yfP^nnyswjkg\\azfejW]pXg|he]jtZxsskni[[iik]`TexZ[]wTQbhT[vpqcaimvRLeh~^OcgrMPwwOPpghxWTdn~}dJ^jwPevJRJOVLr{^Jx}~nJ]n^NVstMYnfTMoWC[gzLkq{fH[pmTUicULrdVJp{gC\\wtjMPdNTfXi_SipVI~pkLdhtDYqLVzbjST`\\okMe`dJzw]nM\\k`JUo[R|w[j_Tw^dSZ\\pOiiq^OZ`cVWwiVN~]kjh[Wt]e\\zp\\Zbvpjc[cdgUYr\\[Zhnvc^sr_Wsv_lhrv}]Vivtc\\bme[pt]mi{gYokwzb^nfjpci~^WmzuW\\[Zmyes|p`[hn_\\~jx_denzfudphklxp|r{`\\puj\\^rXVpvn\\`|hampvligr}l[_]Yu__]ith]]tyoehilr`lmmz^ftzkffp_f]^~kiobawya[\\l|~swnf}u`hziglshimq`hh_ki]|pegngdxi\\`{vo~ubkhkkhw[blni~esm[b{f_^[dflwzcelzynXUjcfpkce]j|o^osgf\\Ykb[beY]}o[Wlkupf^sypr]`dpof\\pxfj{p_cqt^SUhgg^SfeR[|l`bi^wmclil~mZ[leg_YUk^S`u_UP\\eZo|nx]VXuaUnxmd\\We{p[PYymXW`y}ZXsqvmu~ah|wwXS]|qrh_dylw^XWgl]XYWn|]X_\\nnzWLWjkgXW^{mh[QXcQNS_ygXPQ_u{p^VWmzoc[X[dn~aUTjk[]_\\c|dWa}xw`TS]hQXi|ZUZii\\_i}ddrh]^vj]k\\X`jgoWSe\\Ycqntky|x_ylN`xnsk]}gwq~vh\\ocV|bR^vVX]u\\rYTcdgectei|np|wOW_[[]jeSgo\\nngfft[Q[l{v`cVW\\_`q|ymv\\Xja_jVWZitahpd\\d|i^_fr}XWhmfgh\\laeipV^jmon]Uhjgm`b]^s`Vjxwo{]]labd```f[aqkg~]^lfefZglovs]qpcpn\\mfitj]ox}gSh{kYiihdZbmWfwwlXacg{d\\h{{[dxX]d^[ni_gyRXv]jnzdZ_h~uUdt]huniw[wnazctum[_tznz\\`tl_q^n^ijvaotgiuggkmqauuZtipZXfpikzr`f}z~wklqoUmdnrjwz}jrl|tipvrig{{}s}msvmmzvxupt}sljlzyrk~wiy~zvr}zp{}putp{smxnuulz~mjn||~nmrsmqu{iivmynz}zuml~}zsr|p~kr|hmov~j|{jkzrqqtpt|v|~intsmi{zysbv|p~mowv}olspzghwtt~oiy}}~}vgj~zzln~vm{kjx}w~lkzvwuluxnjvzsvplm~trwr{~{vz{pn{v{turuwqx}}|upt~uuqzw{rny||wq}qzvx~txv~wy~~{z~{}{vy{}~~zy{y~x~|uxntrqurso{{x}ut}||v{}|uwxu{~}uzv}zun{}qnqs|wvpytpynnxvsyz~s}~q{ssz|vowqx~z~op{y{wxjly~|~vnr}z}z{~zxu{x~spgp{oqnqwxrhho~~wlkx{yv{uvttzujp|y|ulnwvkjmvpnr|}vtz|{o{}qpws}~~wmnv~|lint}nimyr{}z|}{qt}zlp||}xzps{z{mkow~mjmt~~qpyy|zw{|}{xxxyqouysnprtrkmnv|xqr{y}|rv{zzuvymouyzsljq}mlmpz}rort|wvps~vsyzyyttyzplotxplkz~pppstptzyoxxx}zx~wwrqp~tkmo|tvxry}xpyzyzyxt|usrz|ypopryyuuwt~}{{~u{{up|v~vor~~rsnu}~|qnnvwyqopp{{x}tt}~z|zy}xnp}uplxy}unnqpz|tpwy|x}zsqx{~vz}spx}skr~~vmnw{|wrwvvw}ww~}{{y}}{{ywxu{{mirwpqzu|rnwvv{x{}yyu{y}}v|zy|wz{qs~wml{wpxzrwzsx{uz|}~u{yvx{y~{xtpv{xoq|tp{~y{}yxzxxww|swz~{wys}tpzzwz~}}{txwvz}~|z}tx}~yp{{{~vrwzwzzz}|~{sx}wz|xxyzsw}|z~|ywux~sr~~~{}xxxyx~v}|~zwt~yz~{y~~zzxqs}{z~xu|~|w{{}{vsx|{~}~|{|wwz~xwwzu~w{|}|qx~|z~}yy|zy{y}{zvw}}xuq{{}{zyx{{z~yy}}~zuy}~y|y}~|yx{zuy~}z~{yz|x|~}|xxyx{z}xuww{{{~qpw~zruzw}||yw{~}zwyt}|y}}yw}~}sry~vvyy|}{~|{xwz{z~}}x{z}{ty|~}wu}}uvy|}~~}y{yy{}}~xy{{||{{|~{~}{vs}}xvyyx}{y~~|vwvry{~~~~|yzwy|z}w}||{yzz|{~~yw~{sv~vyz~|{z~x|~{~{~y{zz~vuyz|||yxwxywtwzxz|z}}y{~yw}~|}{}vu}zwqu|rt}~||~||}y{}z}}~|ut~}{{op~wtz}~pr~~w|yv|y~yrz}}}nowpu}uuzqxx}{x{{~}qrxnx|}rov}{w}z}x~{~x~~vxu{oyzv{nw}}~{~}xsrv}zzy}~~woryty}|~x}zonnry~|uw||{{wyx{|{|wxz}{yu~|{}|yuzustw{z{z~~|{{}}}y~yqmsyyz|zwty~~tqryy|~xurwxwnjilrzunny|osuq{~~zqnllqvxwy|{v}~u{|{rnz~{lfmw~}xx|vnsx~}om~niklsvqr}qliu}|urllt{qourrskcbi|ysqmmkhjovpklpy~ykjdfnoovkg`_bpvstrvtolknpyqlko{lijwznjklrxungfppd_eulb_cqtnzlikorwxyvx}vxw{xmq|rgeuxnifl~yr|}z}}y}}}{y}~ws||y|z|{~{spvsmoyypkiknnrwxw|}~wollnrqmklnsy|ytmfdiknqspnmigilllmoplhhkmpnoooke`agmnpnmljiglnmjhjjllkjklklmmjgdgjmppomkhegkkijkmomjkknqnnmkheejptsqlnmjklmmmlnpqmkkmoooqoljkmrsnmonllmmuxttxsnlhfjouvzxsnkklpu{{{nqjihnnqmfzi`5<957AI_[ȾF˷oXEJ?>??=?>>C=>HH?B<A_Vg^WMKDDA?=>>=FGJPYuþlhdYURJIIHIGJHIIIFECFCAB@>>>==<=><=>>@@BCCFEIJIJKLKLLMOOPOOQRSUYZ\\a_^fnow{}z~zznpssoqxqnkihjmlnowssqp|||}}~|}|~zz||{|wvwy{~|z|vuuyz|}zz|ztruz~{~~|{xx{}~{}}|~}~}}{~{}~|xwxyzy{|~xtvy}}~~|{yz|}xvxx{~~}~}{{~}~|{yz{}z~|wvy{~}zwy}~|{zyy{|~zxy{|zzz}~{y|}~}|}|}~}~{{~}~~}|~|~}}|{|~}{~|{~~|~~~}~~zy}}{|{ww{}z{}~{z{{|}~}~}{~}y{}~z{~{{|zy{}|xyy{{{}yvz{yy}~yz{yz}~{|~|{~{{~~}}{{~}~}}|~|{}~|}~~|}~}||~||}|z~~{{}}~||~|||~|z{}|z}~|vy~~zz~||{zy|~z|~{||{|{z}{{{|~}yz}||~{yz{}~{}}}}}{z{{||}zz}|~|}~~~|}|||~~{|~~}}~}z{}{x{~~|z}~~~}{|}}|||~}}}zz{{|{wvz~}{||{yy|}zz~~}{z}||{z}yx{~~~{x{yx}~~|z~}y|~|zzx|~zxzzxy{~~~~yx}~{y{~~y|||~~|~}zy~~~||~{y{~|zy|~z|~~~|zz}~~~||{~}zz}{xw{~~}{|~}~~~~}{{}}}~~||z{~}~~~zy|}z{~{y{}}~|}}}{}~|}}}~~}|||~}}}~||~}~~|}~}}{~~~}|~|{}~|{|}{}}|}~|}}}~{z~~~~}|z|}}}}yz}~}|yz{}y{~~~}~}}}{||}~}~~~|}}~~}}|}~}{||}~~}|~|}|~||~~~~~~}~~~~~}~~~~~~|}~}}}~~}|xz~}|}{|{}~~~~~~~}}|~|{|}~~}~}|~~|~}~~}||~~|}}~~~}}~~}~~~{z~|~{{~}}~}~~~}}}~}~{~}}}~}~~}}}}}~~~}}}|~~~}}~~}|~~~}~~}~}~}}~~{z~~~}}}~}}~~||}~~||}|~~}}~~~~~}~}}}}}~}zz||~}|~}~~~{z~~{z}}}~~}~~~~~|~~}}}~x~}~|{~{zz~}{{xz}}x~~|~x}}|~|y|}w}z~{|v|~v~v{~{z~t}}~}|~}}}}|~{|{~}~|yz|}|{y{}}}|~{{|{z}||xzwwqzrps}ro|{|z|xw~|uo}v}qxq~wq|}{}~~||}yyt~|t~|x~}|}{wwzzt|yu|m{tt~oz}|}tx}x}tzyy~z~~|~y~}y}}~}{{{~{y}|}}~|~~~~z~|w~{~|z}z~}y|}}~~~{}}{~~|||~}~{}~~zzy}~zz}}~|~~{~{|~|z~~~~~|}{}{}}~}|~}~}{|}}~{{~|z~z}{yzxt}|{|}|}|~~~~}}~}|{|~~~}}|{|{||z}|}}~|{~z|~|~|}~}{}}~|}|{~}||~~~}|~~}}}|{~~~~{}~~}}~|~}}~x{~~||}~~}~~{}}||}}~}}z}|~~}~}}}|{{}}|~}}~~}}~y}|}|~}~~~~}|~~~}y~{~}|}}}~~~}~|~~~~~~}||~~}}~}~~|}~~~~~}|~}~}|~~}}~~~}~}|~~|}}}}}}||~}}~~{}~|}~~~~}~}~~~~}}z~~}~~|~~~~}}|~~~~}}~~~~~~||}~~~~~~~}}|}}}~~~||~~~~|z}|~~}~}~~}}~~~|~{|}}~~~|}~~|~}|~~}~~|~~~}||||~}|~~}|~~~}~}~}|}~|}}|}~}}}~~||~}}|~}~~||}~~}}~}~|}~~~~}~}~}~}|~~}~~~~~~|~~|||~~}~~~~}~}}~}|~}|}~~~|~|~}|~~~~||~~~~}~~}||~~~|}~~~}|}~~~}}}~}~~|~}~~~}}{~~~}~}~}~~~}~~~~}|}~|{|}~~}||~~}}}~~~~~~~~}|||~|}}|~}||~~|~~~}~}~~~{~}||~~~}|~}}~~{}~~}}~~|}}}|~}|~}|~~~{|~~~~}~}~{}}|||~~|~||~~~~~}~~}~}}~~~~~~|{~~~}}~}}~~~}~~~~}}~~}}~~~~~|}|}||}|~}~~~}}}}}~~}~|~}~}~{|}~|}}|}~}~~~{||~~~}|}~}|~}x}}~~~}|~}~~~~{}~}|~||}~}zz~~~{y}~~~||||}~~zz|}}{urv{yy{}~}yxy~}yx{~|yyz}~~|{z{~}|{{}{{{~~~}}}}}}}~|{}~~~~~~{|}~~~~}|~~~~~~}~~~~~|{}~~~~~}}{{wv|~z{|wx}~~~yy{~{xy}~~{ppwyz~sou||~wsv~}}}zy||y{{}}~xuw||}}wuz}}zuv{}||wx}~}}z{~}z{~~|~~yz|{{~z{|~~~}||}}zx}wy~ysw~}wxwrw~wwvqu~w|pmt{uzzmmwzv{zss|zzxvz|{|uqv|xxzrs{{wzspvxyyru}~z}}xw|~}{|}~~~}|~~}{|}~|}~|z|}}}|~|||}{z~{vyxsywv{}vt{|xz{vw{~||}zw{~rqw{rsxpq{ysxuqt~zv}}vuy{{}|yz{}|}}y}}~{||||}~~||}~{||z|~~}|~~}~~}}|}~~~||~~~~}}}~}~~}~}~~}}~~}~}~}|~~}}}~}~}~~~~~~}}~}}}~~~|~{{~~}||~|}~~~~||~~}~}}~}}~}~~~}}}~~}~~~}~|}}~{~{|~||~~}{|}~~}}~~}~~~}}}~~}|~~}~~~~~}|}}~}~~|~}~~}~~~|}~~}}~}~~~~~}~~~}|}~}}~~~~}}~|{}~}~~}~}~~~}}~~~~~~~~~}~~~|~}|}~~|~~~~~~|}~~}~|}~}~|~~|~}~}~~}}}~~~~~}}}~}~~~~}}~~|}~~~~~~~~~~~~~}}}|~||}~~~|}~}~}~|{}~}}~~}||}~}~}~~}~~|}~}|}~}}~}}}~~~~}~~~~}}~~~}}|}~~~}~~~}~}~~~~~}}}}~}~~}~~~}~~~~~~~~}~~~~~~~}~~~||~~~~~~}~~~~~~~~~}~~~~}}}~}~~~~~~~~}}}|}~~~~~~~~}|~~}~}~}}}~~}}~~~~~|}~}~~}~~~~~~}~~~~||~~~~~~~}}}~~|}~~}}~}}~~~}~~~~~~}~~~~~~~~|}}~}~|}~~~}~~~~~~~}~~~~~~{|~~}~~~~}~}~~~~~~~~}~~}}~~~~||~~~~~~~~~}~}~~}}~~}~~}~~~~~}~}~||~~~}|}~~}~~}}}~~}}|~}|}~}|~~~~~~~~~}~}}}{yz{|~}}|}zyywyz{||}|zyxvttttux}{xxxvusrqqsw{}xvvvwvutusqsy{wuvy|ywtqqqsz{ywvxzyuspppqw|wvuwzyvtpoonr{~wqqtxywqmllmqy}upoosutrpnmmoxyqnmotqomlmprxytomnqpnmkmpqvyupmlpttqnorsv|}xrmlt|}xqorstw|~yspv~zsopoopv||upr{}uopnooquzolr}~wruqnorw|plo}zxsnpony|qq{zwwnmljm}xorussw{qmljlxwxxonmntpppqzpysnrxxijsp}znlnriippdgk`Xi~}wmatVZngqkdZznd]yc[Vhkn_[of|ekkfXb|n_`Vfdnyl]w}yhi]Q`gtv\\pxfhjTVfwa^xuuo^uYQ^qg^w|wx]r\\P\\m|i^w}_p[PZhuf]yew{YPZdqi]^|koSPZ_o_V^m|cNQ[[kZP`g\\MT\\\\wVPfvhVMY\\[mQRpluoRU[\\^bP[xkhUY\\Z_u^S^xljVVYZ\\`QZxlaNRX^dxaV^j\\JN]gdyzb]kslwULSmjgv^c}weYOOklp~s}nlfi_\\Z`pxnulkfc^]fxzouqlc`^_kunlwyj``aaghjm|~ymb_bbcfjq~psod^^`eiq~}x{g\\Z_gnwxzm_\\aijlxz~yla`higg}rwshgjief}luwlhhjcb{zmpueejkb`nru}pfagh_]i{r}~labc`]cuzze^cc]an|}rxidfb_]cxon}}~qje][brwr}}hmoc`^`nxywibmnfeaagoqgehoupmf`cxghopt|}ytwqebp}nrzvlilmnrjfm~ylgijd_^f~upliki_[^i{}mgknnh_\\_i~vhfgjnnmljekz{gb`_alyhdluf]ZY]t}soqypocYVXdsrrqvo|eUT\\m}tmlpvaTW_l~tjgcd{k\\Z]htsf_`mk[W]pzg`lts`VZiywkgqxijj]]eojfpxmhfuj``achnz}xzugcgpvh`frslllr|tg\\\\nlcingkqrn`Y]txcbvogluwi\\\\ezj_itnowsj`bgjrnnw{rpstga`ds~pimncdmulecuedvhnziZ]oskyvswspl`]cwzlhfj|{mechs{thggjqpcdlkmle^Ztromxol]b}ggjqmbYhono^T^}mbnjmuxlnnh\\kj]^zod_]\\iln`ifxn\\MWbmmys}mtdng{_eSV^fdzd]aX\\bbWQZ`hlOW[XRao_][xmWMXROWve[jo_OROPYjZ[seNNNS]hXZo_KKPY`x^[bXHGS[hqaUJHOapi`{jTa[UOXyi^fWhZYYueaUmuw|hPTd_km_[^__^nrh^]b\\nno]\\^btgl|~mjZWcnk^knlfd^\\l{lhfqnjfsn[Z`mzf`q{tzkZV^lm_b|svfZZ`iwzqg`p~npj_]`esjaemjlof^_ibcsw}ul{k_bztiwxhewyo|ren{m\\\\p~xyouy{nbbn~yghoronkzrklk~yjdtpkkbjmdkxdcgjhifegolulbgfcb_]`dlyvksxg`_]\\]^all__\\[YY[uxk_b__ZW`p`[\\^_][e}bXVXW[kqp{cWQOQ]jpvl[PPU]dfbmq\\RX]_`^\\bum]ZcpiaZW[jnsiablthc`[[``mpigimg^gl^ZZ^{nd`]]hl_W^xtp^ZZZ_c\\[ilp\\WYWZYZd}xeZYSOXcj~|t`[UU^e`afk|`YY\\ed[[]bjvsZY]ekcZXZ_jhnsbcc^a`[XZ\\fmzuh]Y\\^\\W[\\fh_Z[]ZUY]jmb]]^XS[jqjeb^`]Xapmpqynja`b^]grpmflt|vmd`da`jrmmjeehysogckhejyrnj`]aplvtsi`atzhecakrxe\\]goicck}upg^[aomfhozpvvg`\\esy~qnypoi]Y[mxwkrg[W[xyo}wdZ\\nozz{sa]m|qo{xu|qmfjticgjwulkqpkjsrhfdhp~xgjoobmxzjkjep~tokoq~ihlxnpll{uvnvl``ktmmnrwlmwja_hnjjpmdalygdhgeh{`]csme`[]hhZ]lk^ZX`l^[]ers^[^msi_]Ycmik}ts{ojfhkjkeiuzszpnrj__`^h{hnk^a^_nw{mwynabjef{{mwxjrb_lf^f{vqv~s~q^]]`ls{rnup\\]_dqn{unl^]fgip||mxyt~d\\`idcxxvjnsnb```dmwnrvt|qrm^`ggieitcjb^bgrgfuoe|xcindhin~ie]\\a~zmjjd_v|_[\\ezmkk`_|p\\[`l~j_`[amdbo~zvn]anid{~kgnxfjndln`YYsohjheo|daj{l]_ojtl^XZii\\^lmpiUPP[fs}waj\\ULWeepcjox\\SNZ^k_ZWuUNYZ_kNLdnchlYQWaWS\\Zb_]{hTTlenqc`Yl|pglh^bUNhf_lnl[pn]VOSa`Y_c~e]_\\UUX|`PW^hsfiVQNY`V[W]ZNNQkYVY\\_PNOVnn]_f|_OGLWujYZZ`VJKNWiWMY_TNKO\\wTUU^~^OKQiukYXmmiYS]kny[XTjZJMQ]j]Yi~hTOS]mh[U`p|[UV`gcaZ[YnrXNU]\\`m]\\Ud]SMQ\\td\\\\Y]rqQIIXc[[Z_wUIKStdXY\\iu[OORcjVYlp`[UT]p__ti]ZW[txryucspd`]^k|usnk}{lj`]njfxt~zo{zlc^]lbd}wzipuf\\\\ocnow}njtxh__m}mluviszbdb]c|wtvvnyob_]_ifp}}ya]^jd\\_vtvnon`W^t|}gqzh\\Yj~u_kkilz{gWb_cmc^bzngXishX_U_~qz^]YaNYkojws{^^nMQ{moo}_s]dpe[hyhkjioZ\\qky^uc}tcmfpc}yVskp]iyqh|v\\h\\Xe[^ploxfjjR[PU\\xe\\vj|WVZORgpnZnd{nWWZVmg}{m^h^\\ZJXdoi_]ml_h\\TZ^idmnYeePW`SXpqh`RYzMRb]cj}~pcW\\^_d]_l`fxjbaWW_iW\\cVY_dSUVWsw^WVTXvm[OSbij^[RRT\\pbVT`kcXXYRS]xgYZd^VW]ZV`f^ZYXRXa^fs~i[TSVW_ejy~mzo\\WSSX\\agnvq{hXPQQTY]dqzn`ULNTUXZ^t|_OJLTZ[`^gzdQLMR\\^_edk}{{n[OMRZcfef^dz}yzZNQY_fc`beq}~~gVOS]a]azl|}}jZOPZ][_ylVNOYZ\\f~miTMMU^^gu_cVMLS]`i~~pidXMLQYbktoimmg]UMMU^``in]Zhp_NKRYSWcq`Wh`OMRTRV_`f_njZQQRYb_drr~x_URT_{ogubenpo]]_cwv`i|tpo~ihrbXV]navn]fwv_ggWRXgogm^`y_m`TW]vjSVS[n_VMOWsp]XTYnpsbZbtmVNUY[vdRThncXRNapTQ[^XXabhanZW\\ZRWhwnm]fg]_VLOotdolo}lSOUZaus]TTmk\\X`jaY\\ZR[jxiQ]uwisk]ijdhc^_}nYS]adtze|^peddWh_bdYrsVZxgY`]`kjtdVSYulfmw~lWZMOZ_~pkj]_JLR]ldj\\Q]vjwpaSXcY]{cafxywbhZWsd[r_[O\\eccfjctmvpmcPZadm]lSLQb^s^~ny^f]MPYX^n^hkZV]_]SWZYccfgcomPPYXTY_ppt`i|j[_YNLXdg]dbW[\\V[^_sodexcU[j^]a]]fZ`cYatp```hkbjjbYTX^[bua\\^tfhh\\UYb`^_eh_lb\\cYRZle\\]yeju^V[]XYkr[X~{ekaZ_ZXW_u_Uev_[nb^YOOZq|ZXs]Z_v]SMMXdxkZk`W\\j|dULNYaak_duTU\\rt\\OQ^XT_b\\oVRYp{]VUYXPW_Xc]SYoxo_USRQSXW\\}_bp`TOMLOXSVwbOMKHOTS\\su{eNLJIKSZwjmfOLKIIWehbSLJIKVnwopgj|`MHLMR]wm_mwakbgcULNPQT_vlqzmsiX\\iUKMNPQg~wz_f_LMMLOYvtszZKGHILWh\\JFCGLS_VHDBEJQkaPGCCKT^nn^NCEKNZjsaRKHGHRhjuyp^[MHJMRf^^toqs\\JJLR[][etrs^MHMVYWhvo{}bXLKOTZntdyx]XJIV\\fg^iqiVLGP^`[[uWLGMXZZfmnXKGLTY^|z~eTOIIS\\lntYNKHNYiygOJEJW\\`z_OEDOPTmn\\IAJMO`X@DKKW{t}mM@CHRa^n[F>DMYZik_H>DK[lwit\\JCCM^znuM@EQcrerzmYEBM[`X`hgSFBFLZZ[kne\\HA@EPY]gfwM@??ISUZd{]F?<EMOT\\{inYC=AFHMaxwtk¿kPDCEGM[hieqǽnXREDKNO[wiabƾXQJGLMJUj~d\\_]TMFMVLM^beXdaTDISNLToic\\\\l^JEKPNSinanmpn~qI>FNV[a|z_nlRop½i_KELTMPbmdQmphkžZRJIQ\\hs_^OThghhľl_NKINea\\d|WT_df̾SMIP^TO\\m[b]maMVUMLOY^c_rmrTNFEL[pofdcKGHMOVk}\\nXHFMQZQe~pilncQOGNWX`\\dj^^m]aRMPUeQN_nY[akmaPL[VJLVSV`koĿwh]IGK[_YV]OZVLPIKONNUfm^ZYXLJHK`|g`YJGJJObp\\IHJIFUzlp`hWGFNMLQgmhd^NFHMJJ^u~ibbXHBGFHXg{w{waJ@?BGLXv}aJ>?CFIPvxK?>AGKNgz[G=@FGMZdYtfM>?BEKOSYn\\ouNA>BGGLO\\f\\knPHBBFFINkV\\^WJCAEINR^zTYcbQEAEMRNL]¿U`hPIAENNLJOkbwwSJEEEDILOeǼawZJKD@BJNMUȾo{lOIA>DJNJSf]`]OGAGGIHOcUVXZNHKKIEOſwRNO_bNKJHFNż^LNX^`LDFHLYǻ}OLWT\\WDFKGLjȼ[NSWTOEFLKL_ǿdPTVWNGEJNVbnUUVZQGBDKVxTV\\ZWPCEKTuiZP`ka]MGKO^h{`mixcRYxZMLMOWjdf}}oWQ[lSONPS_{pUPNc]PNNVW`VNKUsSNRXXh|n\\\\OHPkaNT^jcmh]YWHLsr\\S]m`wsdX[TN_sdPSX]luj\\hiVTueNKNVnfc_aVZhIIV\\lh\\_aV]nLLW\\iiPZ]aZv\\XUYc_N]\\h^]vXVe~UT]gk]rQS\\zXNS`t[[VX]_podPQ]og]q[R\\]_npWPTb|lzXXXg`PZbn}kURqskVipkpnWUhn{lmhc^jxYVf`emd^^]iaukSa_cpw[SUkhihceckij^WUa`qwh`{wckh[YVie}oaiscca_mUgfs]VdhnjhZVmeZcr|qbsft{[oii`Wlo_``fln`il\\dnesnUumjjuhf[Ys{mww`dsm]UTgyiwphtsjiSOV\\ijlflcgaQV]^[Yqpgehan|Zby\\Xj{t\\[slrnj^xbd[W[frbptqX[dwhj~p{mw\\\\]\\]nieri]th]`_i_YjwshQZhwi\\mkQg~feOoecsc\\VZ}pilmp\\_fXmlZ]h|rYsj_RRhzkspipi^R^bxpxvkg_Xo]j~sj\\^\\d[RnsupZRS_Z[wmVmwmydW_\\fZX]]Zj^`]XXNggQOhom_SQN[eqdVb^klXWWT[ktrZ_`gk]RTP_gmhZ[jiw`TTXT]}hSQXjTROWlipXNTokl[Y[Xagmk\\KNez^hXV|hdSGM|dZhjh\\o\\JMg^\\dQpVO]`[shhmgt]ZJQeiyf^o^[t~nIIOO~`_diotdZ\\LJ[u_[kchzgPHHRmUVY`ppWIHOqv^dVkSRhc^UR`xl[wYJICSw_clghiUG?NrXMistfkjkR?CQf^PYYQU[`IGWie]xvTMC?SbwlTjvZI<?Oj{`Ngm^FEVU|S`^`YYHJ^qy^QYc^nU?=Mw~jYMZUbO?@G^ſ\\_MAPetNEOZUhST\\UJDK|z]m\\W_VnseN@AKhwjZOPd[OIRuWVciw]]aofWONSxp]m]lsdYDAH`jl^PO`_^__P@AR[SLMRKZdjRAE`o[KLIOVPaf^YDD\\¼\\kTUVM]`g`MIF_]``TP`o}ou^_WZ[UfemTWisvi_LU`WQfgdOSThdhp]^YLXʽW[pV[]|dPMOo{LNK[PNQOjj^[FMYXfS[]kpnegM\\ijNMIGGN\\[DF^UQUUM^nSK^aaMI[`ILQm^T]VgQCMXNYm^`^m_FOLIJZmldrmVGYRL[cni\\xe[UOMJN^q\\XXWAL\\Xu[rZZQMbPgcmYCMovbhJIOUU[odhjX]eujmZcXEEPVhiW^etl|a`{^Mjf_XPVNKTWXYittd[nJZ~jrh|]ON{NN\\TIYeVckbz_MMPUnpKJ^OUFROQVVMaaMOXr]RaidXIU`][gfYtiy^`ZL^bwiXT\\Tlhcd[QSZ]hUcxNf}lKMUO]]LkeMLIJQlPS^gmv`Zh]`bUVRNT`NJXlPFJORMRS\\aپQl\\UJ~[IDJS_M`_WL<9;EbĻhYKF??HSL|uT\\`OK[d^oRfMM]\\HAT~QMKS]OJSGLJrkgVJRGNXOaϿU@:@Xf]ֿcmt^>DFDFVVLt`nƺfZLL`MQDMPTiMLLH{VLBM}OSgYbɿPNECBIU]ch]PAJ]s˿PDM^R\\_KevhNF9<OUOWUKWPVq¼s[E?JEGQU~[y{ülN9@LA>==KOBA<GOOʻVN=AP@EYĵ`<9:AN::>H@=<@PD繺nzcH6../;=UkNA2Iɭd˽ƿ_OON>K~ĸO3-(&(*66/@QHF6-8LIhO2-+&$\"*/4G]aXAFP>?cpYyϷLNhY6.58781*+13CFAKտǸkA=96\\ZCAI쾲÷ſʴпeD=F>ܼzG7=4518D@M=@DLл@>>8B?15/@ICF?HGVpn_S<5/-+*-.698YMIpȾ`L6;Tyɹ]ּp68.,(%./<7<KݾkFQȿM>03/0>iU@:ZrQXHUO[[XOWmnX@8:/:7@FKپoVF5?sZd;3@rudU9)/=::1/K_NQN˷jįǳR7:Eqʻnt̿J=;5,*02*)+)(''04,+%$'\u001e\u001e'))'#%3;8BALH68=.*),:97KóµºmL?951)\"\u001f',/+-8.,)/=<5/53-69-.+&&*)('.:6310;VKjȽͽbLXʾYhMʿŻÿ̷826?I[TA5/-//4,*.4>>4,*+**.08ANZ˿ý|lsUS_G>0*-0534755>9I=0.01/02HINB<?AHQiNRe̸վp˺ֿ½ǿXFT]OF=76:6D`oLVʽ¿UjRJ[q}JD;4/;@=8-+.5971.7=<?CSjϼZ<641,*&%'-+*)(*+.-**--*)(*,/0.144980/0/681+'+,**,0AGVƾjxVAC?Ob_X[kQIm˿̽¾¿ƾ̿QMvQ[N\\j~e^Wһ\\dI?OGNG>9:3-,*-/09IXTNJJ?>@D811..*,+*,*)*-.34783/./-,.;J_LJE8;:;JRU¾uZ@><>AC@MCFTRUVUKGRZMCEC;401/-,-4<>A;:68<>A_lPBL_WVXfzXUUYOPMLHII\\ltwǽm`\\]M@@?@?A;?OT[MPHLhoG@?>:<<>BDMHDFITZoSMXSOI`lbUTOS<759:;:9>?B?EJ\\ScaIQHBFC?>86;965,+++('(((*--559<<=BLHKTQU[ķx]ems`arof[zgYgZ]VUƾý½]BDCFGHRMedlTrhjkLNVd]}MJD:6..-0./00/-35;=B@VV_^RpRS^]KDKRLKFL\\`s}amcVPA;=<9765997<:;>;CA:>CP˹iWT`WtzejuOKOY`ʽ\\OfVmUNqſZaMFCDJJIKE>789=B>CBAJHB<>@HF@?<:>==C<BE>IEMFCCFHHSLOgf}xaľɿddOVYVaI?DE>==DRH?8126235326532.,....14<AEI@KIKX_źĺY~VQQUXTTYkRľ\\OJNLGBD??>=>>?><<AEH>A@?>>HEHGNXDABB<?CLMIIQ\\OOD><;;<>FM?CDNH@><@>?@BMLLMLMiƽvv[dT^hǿſÿzePJGHJIRWR{iſyWNIFC?DCKKEMCD><:5;87:8>EJPZUR\\Vmz]V\\\\dUJYo\\lnnp{m\\POEII?GMPTOOC@DCIB?=<???;;<??N^\\YnWRYEJI[YVOYzszliZoVQLVLD>88:?@CAGLB@ABFID>=:>@OMMCEND\\WtyɿjlfdU}idhZW\\bVSB?JHUJGOT[UMHFIGDJNUWGHE@<=A7857?<=;?BCHHSYxnmdfýǿpb[k]TglrQVfƽοnsh[WTVNQ]LMUVU{Uechicb_[vnNPF^OHOQMLPO^QPYU]^mqYUXVVZK@887975:557863.140244576875:<CLDQSVf^Wƾ¼gpcb^PKF@WJEHLUOC@=>ADA@BBEBBFACMNi~yľ¼q~fkacW[WL]OORMQMC=FDO`M`YWRLJCFDBCHXfqd^JEIEEHHOJKKNMNY[`^\\KRf]NMLMH===<DHH@CDGK@E>JWW^U[vlnogZWW\\DJGBHDA>;694:::<:>=LOimſƾ½˿rs{k{{UGAINFG@==:7:<<=>?=>=?B@>?<=?=@<;>;7887:87689;;967<<>:=?AC<?CJNMKTd_x`\\QQX[`sitvmc]tkoX\\|x½½ÿfl[gk]gku\\ĿpmG>>?@CK^cVC:@HG>:=CNSOPxa]Xg~Oe]OQ`RXnn_FLZTKEFHKDOEBNG>FM=>=@KJTZ^pol}w]e[LLLD>E>;<57=>>E99::DEFDLJ@<=@CKQ^`BB@JMOdUq\\m[W]TX¿ƽXvǿMVZICEI=ICNeb\\[Qf¼öXILA?8//,*,*)&&&$((**)'&)%&(-.-+-4378708:6=>?KGE^[V|NSYYNRH=B=<;:<BFCIB5;<8:79@KMAYp\\|ӻºcOPONL\\mY_ymhUPJLl[]n^XQL_pguWOY]QRQKF=::4431154/35640..-,*+(&))*/.+./-00/<=FW[P_`xnWʿʿŽveijżpsliaiUKgh[IHMJNJAKKKSIMGAA<@CADBEC?CGEA>>DACNQGDAJG<?F=B=;::9;:9?<=>B>;>9976;::50575;=@C>?DICC@GUqpiWnc^\\X]prnpa]]nTR\\sugra]l¾WIMGEMGFNED@?BIDFXEBGS]YpqWYPONXO^VCNJGMLDAE>:=<<958=<8685886501524787697313202474/043200468:A>>>;@BBFM\\slbSc[Q\\jz_þļwky}ǿɿ][Zx_qZ^`iwm_RKQVYNNQXQIJJPo^VZHFKGKNEJWkomY_[f|{tUXWX_ejxvuWW`dULJNNMPROHFGDBC>AC=:;9==9::=??BKIHDHI>C>AC@BADDIDNGILHKKOFUmpÿÿĿþlLIDDJKKMHEDCB>ACHORUR\\MKIEPMSOVXNMHNPCECFF>>==>>;=??A>>?@?AGEIHGLGFCCLLMXZWU[]kjsm{]Y`^WOVQ]Q`\\duf\\R]\\`rX[_bbWUTQOMXYlr\\^cyv{pve^Uc^M\\]TOPLMTINKRMOY[l^]_ZUSZQZXOMNIKMGKKGENPPVOZNJE@@;:3357=>BQ`j?=QҾSEHZȶuf˾˿oH><8795;?=?FJ?<74637@J>GF:8:HZȾpXƸǹ{Sl\\XQQVZGBGBDD@CMtRJLOiƽXUQQVLIailNG>GACͿ[HIQUlrVMGEBG@HLB=?==EJRkL]oUTVWRTNWTTD:678;C]gA51-//./.4?GReֿX_ixŽPiYZWǼ[^S><DK@KmĶp]IH:5;=HLD<650:>81363/,-4;N¿RE^bVhƾvaNFME?:86>F;9<=JY`ɿqWJIG@@FŽ[OMLH>;D==CJa`yQ[i»\\F??>;85775657:>QYb_J=835627=>?>M`o}HEKiĻ^mYC759>EMOMWLNLRuYEGDEKD<967?GV»iHDHL]QHDB?EC?MM\\i_`UXQKFT\\C@HPKMMKMLLUswrWKBAAN{^UH<;>>HbyǽlL<77731.-,*+*)*+++-/3:?C\\ƾUB<;CNawYQF>=>A>?JkýɾkSUWY^zr`eXOKBMXZV]fTeyhPHA<77;?NaXG@=>A?MOLNgqͿžĿjSYNMXQVE;87<=;401114979<>?MY^ſ[OMD>:9=?@G@==>?==9552131./3798=@EA??<<7434001/3;>FP{ümq{oPHHOTPNUuſ˽[lnMLMNH?:8:9<<99656>GVmǿ^KB:64////11/1/002320/.--.034020/.---..-.1259EPXdvcOGFIZ^_mSNMLQWZ^_a_\\\\_bXf^PJKOWY]\\QUWRLNTWW]ZY^h^NYaǾ^\\SNLPICC?>>?BCDEJMPRQWc¿gXTJNUOMN]TV[SMJF=965533442354888:;<=<=@GKS`j^^ZXPOSTSH@A>=;998;:=@><;66655699==>DITYMOIHEFE>;::99<@@DCDHGHOUfþ¾¿ze^ZXNNRNLROHA<:<7<>=A@AHHJE>@BB<?>::9:;8662230/287;:?F=E::??AEBIG>HIMLNMFA=AA=>;<ABG?=;<?8:759443487<=?EFGJH?98557?HLIMtqcTYžǿɾg]n]jpboMMFSB?JQWPVbI>>:<:7;:<9757731068988;8:><;::CCFG@JD>A@=JP`g_[^[l^aN^XLK@>;78;=?=>:>=658</0/13.7=>>>;9<9;;?KPQɾ[Z_^bɿſ^iU\\qjTtbL^KK??@MGIT[LJHFC8<>DFKLLINNEUEC<?7693;=>:99202546413.14/28;@>?>:;E><@??>>;IFGPCHD?F?@:>@B@9DGL^W\\acKbf`Tbrnn]agQWxd~_Tn~ɾƾɾſ˿½ʽļúþÿZ[Uu[ja_TYXILNQLRMFILHE@@@9>A:9:;=>A?C?CDMLIMHMKC@C?>=;=??EHJ@DJFCGA@?:;>BBBA=?;:=9;46557291453666485:93;;=EFITb˾lcUe]MLPo^Ǿvk[XYbZOPNLLBIHKJFRMMLS_hǿpcnik]`ZOG?@AH<=<:8<FGJEH?>E==?>@C<DGA?=<>==>;B;7:;@KTO[QFD;9:79ACLV]V]wWhpWMCJSJLtvLHFBA@NLIIGOIWKBF@JE@B??@LNXkqiXPW[TXYIQgɽȼ½Ǻzc\\SHPPQ`ohve¿[SWhOLLCLGIA>C<BDHDBAMEDI>>:8<9;9>?;?<8688:=MHLXRU^^Q^]O\\XcWw\\NOf_v\\\\]s\\lh_GF?A>;C=@CB<>>=>?GXPhkYNZJMRSRoMbZV\\i]n`[KPKJWPfvmtiaϾƺjfOh|pZ]¾Ϳxz}UZLK[Ww\\ebQ[vDLOROJSMMLLJDJN]RKZNS[KPOXbPOIBGB;=?<@@<<ICIHAIDCF@F>LAE@;HFUMINJNJKA>KLIFPKELHJGFEFIJ[MM\\M]LYTQS[ǾǾÿllY\\QT[|apYcXic^u}vomn_^[NNKIDB?>@A?BFGCEDCGJEE?ACAF@???@=BEFIBGIRNMQGNOPZhRZZfd`cmkef\\n\\PRTOTKDHE??==>>HLHNOONILPO]}OXbƾǿseZ\\nξc`~|YpfTg\\YXlbSKJZXxp|xaVYdUOl}pUYSNXts`m[WGA;<?>>@EMB>J>98::9<=?DA<:==EEDFDLMNTKNOK>?@DHRcgiw{gULLIHKg_Ylm`XWSUY]jYO`fZVlcaYloo]_X¾¾jp[`SVVYTPU\\OTJ>EFMPBB?=@=EGBD<:99<<BABKKLF>DGHHTLLLJFFEC?CLBGE?EAABIJLPKUJHHGPPcfdqlegfvpzoyjRUPPJEJOTKHK_i^oyr{b[yhsjytij__^W\\Sip``WZVXQVOJOW\\ULJGC@@@GCBFAIKKJMLIFGDJFEGMIGJFG@=@DFF@AB@?FD>?><CEBDB>?>>@?A=>>>AA?EIFHJQPgmkxnabj^aaZjlczĽǾcSdfymnRKBD?;@LCLVIPNQM@@CJFOWd]RchRKJMWJFVOT??H8992436347@D>=:>7B?D@;A==416:;<9IRJeMPt\\ɾ_e|]RSNOVO}vcWVlX{˿txɾͿYXYLWLMJKJMYJRhs\\_pNSE@<:;77A><CNCC@>B?F@=DLJGIIKKCKCBHAAJB?G=<@<CD?NFBA=@F>=98:?JKMMIFSLOMFOIHHEMGWfPMLLIXQ^LLkž½n^voýǿżƾq|fkTfq[UVhnY{o`QXYbZJLGJ@MLBCEB=B?<@=DIFIHHQSHHAEMDBCBFWHCKCMLA>DB?AESVOL\\PEFGD?AHDCC>G>?H<=A@@=KMJQ]]nZ^bTax\\q_px][}SLcN_UT|h_\\jh̿tmmþȿlrx`\\U]d]^Sp]V\\kXWlc\\\\^ejccaZpenkWPTUKc\\PKMLIGDHFDFHDKRIKCAF@KCCJMLPKFGGFGFFGEKGABE@>>B><?ADEHDLONMPRHPNH]PVNL|sg]cPnWuf^eO^JLLHKNTbpgSf^Uthƿ¿ǻǿʹhckiNWdIPZgtQ]USILt\\J>>DJEGLFACIPK]o[KbR\\_D<=86397:==PsP61039;H_DGM>?C;@WQKοt]`KWrYK>Fcw\\ZVMJLMEhXX[½Ƽ_μɿ{νbX~ɼk^ɿeM½Ϳ^KMUeKPMNuxav=?APPBOIKDNP>EHy]d]pVYkPRYMFDJDECKY@FN?@BMMVSmm[IC8?A@E>NL;?GD?B>><D>HOHB89<219?@<LATLMZRLYNTfMFaU[X_sdRhlʿbUJ[TS[nýȾlοżȻU`QXW[KSVQgNV]OVLUXN=@APjλƿʿyKFABD~gYBNL@<>=>=9OADBA=>99:?8887@;GmmSlJ>OqWKAKFi`YNCFC@MM?OERaSJLEBI><D:FHO^OVǻ\\^Ql{KJHKA8E:97>?>@?M\\E@E_LUƽŹν»~nt_n_NrvڿʿXczfǽ¹w]YZckRRgeNk]lNKFTu[ECNHVRRcW[G<:DMDLyUMfLAGVV^IH7:?5;7>E::<>InhV]dOY;5<BT>BCF@>I8=;@NHFELFGaNblRNNOTjhH\\JMNNO]sMCPh^yObnUmkYb|dL}ǽǿÿûͽtIKgnbb\\][rq[\\b_tnME]I@<D;?;:>=NK?;GKI=C??E:?G?VMNyUDHENeZ^`e`XNAHG@@I?<744=:?<:LHNDHX_RyWSSBCFLNALKMGOZNQe\\MTTqSIK_JKJPcifչſü[uؿžlnmn[ffffdbWhNSpLN]_VNNC<A>>D?GLSWTLI@H[JHWigcHK[iX\\poZFITIAC?DBGGACDC79;>BLS\\]NKUcXNjdPOdb\\[pR^T`]`_^h]bdwnzTS`[PNIEC?>A>?EEOLej_p_uZSAGJd|\\PLRMFC?A=<7/111865::AA<=EJGGGQWcppgfRKHEFEGCFHHC@?7;;::8>DGQmƿlʿ}ws|_]LcZULE?=IVHN`TĽ¿|mcp\\»hnngtn~cqdng`PVLHLJOS[uvobfYbWR]_QNJA>C>?FFGHRORMUNHMFJ?EDAH@FEFGGFB@E>FJKNK_KKSPMLPWROOIDGNMRKUe_JRXUYJSHKMHKDALPJIYae|¿m}Xj[U^dOOMTSKTKHJJHP^Q]`XY\\_t{kbXbPMLPROOT[]XORIFNhURubYX`LF>><??BDCD>A=CJDA@@CAFHNX[hVOXeoYT\\skR\\[LYNUPOSRJCCMXNMIFICIFJNMY_ffUo~~pĿi`N^bf^wy|f^XYd[\\NKKHHNQTZWSO^YW^[`ZQSVVUS^NVKB@?@DJIKLJRJGIHJLRY\\OZQMUFJFHGKOPWJPQMLBA?AAFLLGCC@AE>=>==?FIMKO[{nqsqigWMIIiW]caxc^[MOmywfykhpomVWKHV[\\_rĿff^XW\\\\^b]^\\TQZ\\JKMFE@KKLWSWXl_hz|[SCEC9;;GKOtOG<796;<AGIWQTRKKZZKXRJUk[r_n`[iPR^{kePki{}g{o_l_Ynfkjbprpf[_YWaKPLN^aZS`QNNPS[c_PY`UNPKONS_ajcYRIGXZN`o_|Y\\XKAC?@BCIIRHMLKPOJCBCHIONXS[_JEAEHGAJUPLO[IKJPTOYRUIDObjZd^kip_^kqpjZR^`Zľ¿yopxkkghi{hfZb_^Yu|pizk\\_^[R_\\mccmjzlf\\YXSTQJKSJKEBCE?>@DPJDINKMJJLLLLOMWV]ZOW\\^_fZg[TRIMFHDJRPOSPIIIGKFDMPLMUWc[OZ_g`XW[[S[gad^\\fghutxirils~\\VV^gmv}cfoqt}c`cbihf\\g\\^faf\\VOVYVVVXTPTORWTVT\\XSUPNMT\\PTVNRWQQXWYUJLOGJLKMMIKIJLKMLFIGBE@AAAGLMPWNPONPQUPNOVOSTRZRXUW]\\SMQ^_MOZG>>DGN]l\\MUWZXur\\T_οbFXLKOOSc˾̻l9>^^̻p[Ko¬E[ɿMF;=20.:5'24:2-<\\E1:807<618;/GL<3?G<P^ԽKP]øʻfC@>3;TcGBM?961.2@E8>E>:9@G:/.2>ٺYM@1,0GG?>D<\\|><aOW}oGOC9A`qOӼ=K=:]ǶO]bhnA=KMbV{VW{ݿºӻ_:838FaƽnQjOMgzmJϸ]X>K{T69ϿXiŹǺGTeR<QgƵ̺Q?/7Z;^I`O^NNx=N<-(.--9B1*....<-%-3,*)).'0>>;NJ6..K:8O<7?Դٵb[7C_IO87=H=09<JH]kjkپԾUGAXJPUTRhSmPؼ[gYBVfPWD6MbiTF;6///(-27DBdηڹNKCS̹JVA788769>0.0700D;529PDAqRJ:8EROKD?3,)-2?XQM?@P_ISe:iĹ_hǽkH=;6[ο`=835078//:5.21334DʺrODRMWyԼ@@N?@\\T@BE<<;HBFѼVEeWE7..0-/4557>IG>BN¶[DAGYUNbmJAF_]K?1:E_>7=@LRʿwyFB<2853.-/06C<-/155>ka>?7+./008<52GMJIGE830.,,+(%*0.+,)$$$+36IA?@76Gï}ȴοZHd[IKM:8?=??LeGJL;?JE8?G<LʻxicTx][VF?A@Cfʿ[ZI=DC80/89=B=EJ`WN˶XIA3-:7+)/<E;DH0/1.-..6JxnjkJ><=<M÷YB@F<:?>=/04.-9GUNOeUIA>@><Cx{XKFJ@7@nfkO7.21-*)(&(.009UjKdZBHD<GSJ>;861628DLPbN=:?A@EXcg_PSonȸ\\QWo]]aKQY|M=A@6894-+-05<DLTLiǻ^_XJRT]W]RL@51420552-,,-/..0//-0>F<>ADNYUNNYLG[OIB=EJGX\\`[~SRof^xl[sfP\\N@9:5/.3425;=;<;;<EeʼjOPKMkȾ^TLHFHKGNH?>FVV[mKDI]ý]b_h{ZV_[NWglcMIE=88@DCILUNPMDK>;?FLHENKFHNTZcWKGNeaÿnbUOX[`TKB@=:==>CN`LLGGR[nqWMVJDCM[[ky]OLA?LYnľrSV_WZZ^OHA=5676<OpQFD=<EU_rl|QI\\nŽù]aunyqQEF<768::=>A?@@BGESyξźvlZX\\}^^UIWTH?<<75<8378659;:=GHC?>;;;@CKXTNJLKA?M¼kWod]`dZPIA@JJCA@??<<>@>??KSECTUHCR]>;=ACG_YOTYXü˽½^K[`\\`[r`iSW`d~ʺúþɿaKG\\pYJD@87OUMmD<:48CP^PD@;86:3-./-,./222//:GHJF>=96:FScdWE912Eoh¾WSn\\JZyS@:>HNHVs]ILS`wľTD8536Oxy˿jFWmh]o̿^aKWpLJB;;?ENNF?EWjɼYYOYԹk`M>ERb]p[UWOG@?CHi¾`B=:4/./68>D@BOX?514/.6?=?PWQH>784/44027ALi@0/20+)-14@OgjHK@;99508:987JN:313-+-49.6f˿`ȵ\\ZEE^lڿi޿ĺA8@NOZѹI=@76=A<:64210/3>ETj_mK>5.-+++*)*+,2>KPNueXA;::@?>IMOfrſkKB892-,,-.1:r̽B766658=EF><;8422?}G>5-+-/0007@PĺtXLJNs[fz]aogt¸kRD;98=>AGieX[fʶùhyTNTS]PIMIFD90.-/--19:<IRYlTD>==7;DHGJ`pQEC>8H̻oVB?EJLF??BAABKzwB953/--/59>><>:3//35<K^PL^fL=9554:CEKdǽȾgQM\\xRJ;9>DB>BM^Ž|xc{uR[ǽ¼[?<BUs¾UT\\LHB>G_yjM;0--..,--.6BKP\\ONZeI@>@Mzz[tB4+)++---.7>AJ^\\IGC<1-.4<GL@<:7767:JdJB<;?AB??JýG<99:;78=>=@HU}Ŀ~ZLCF[MGDGKLFKKJVu̽}e]NFA?FTĽ}M?644578;=BHOfѿzZMKOXjqqzmþ]G=:753237<?FNbe^P@::779<?BHMKHMV`]M=89977888:<AO|e^UNQZ^]`oiſ{ZYa_WSjjZ[PBADWXRaɼ^JI@;79I}·]\\o`rVC@TqmHHUGP_}ɻL>=AH>>;<?R^D>9@IC?ME<45<;35I^gUPNH=9MgZGO`MBHt]Rjɻ̽tWNJINhLC</66485,(1664:AVW^ѼھhLW=-+()+&))*1;<HFJ_m~zŵ¾eeE..85=CMCM@Y8:IH9-,/54762.()(')*269IkHbcNLV:55NO4=MQl־׸ôǺ<@eXLDT1.9NNbjȶ͹÷ºӽDAC>A>04305=T`½ǼA>CGL8@F<?DD6-6@AM6Fo<KHPPBQMMP=G?9Ck]dH5/=ITUlð\\ļg}hºڿKGMG27CLMKfEF@:9C?HC:-.<1-5;/),/;@.00<Ij;IYH;T¼IJB>Q{¿®T漹m\\HRT`ÿǽYʾ[GEEgo̳[iA4hBC^@>9;DfXWepɵnla`KC<>8/5475>mY8<4#\"')')('%+(.-),-++5IG512/9KxǼp^PSSSG5Gu|NMW=FrOBŽQ@^MBH?_ѶL@;77?20;?HJ[HC96:Dt>?PGTļnK]HUYϼȻ~CMC;B[L>@;:H7/5077>IJcG?<DImĮϽ¿ja|W<64=MC=?=8:EAE=:873/4<<>57=Ds]VD@@_xOHXT<=C=LH6-$'%)+*./3=VMYbnV>;;Uzj^W\\QZFAJKNZRWe_Yп¶Ǿ[N>76==GJNN[ûʿ]>;81/8DFEA<?I=V\\=9?HM][QKq¹zr`B6<0--/14/66-68@I?9<GTaeN8:><HEKhXdVZXLPE>524751.+*)(,49DIOEC>;?HNXHEPLWN?BICRȻ{zSD:6:Jcgl`MKX[sQ¼ǻ`Si_E?VjľWGB;<;9:9:FOUVTR]p^¿¾þ_XN<3697<820239AemTHA:57?UoZWMKJ@@;;@IXƾWK>643....33465420358BxXüzt[ZG@=>JQo~k^f[VZHEXfhr^ýùSRQxklkǽĿƿ\\LYXhqUGHNHHNMNPIJPTNG?::BLHJOWVWdZLFA><EO[_anXU`oVZa_]GC?===<:;=?<76:=<:;<DINEDILK[g\\j{}ŽjKA@DBIYzo{`PF@KXUH=9;::?GQaʾpJH@;?MOT^kZ[gocžvJVXQíķkE=<5/.+*+-+)**.,/8I==>83158?B<KozWID;=Ga;¾ǺcWNNN@858448=>B]bMDGWɺȿs]_n]L>ACBFEFGJGHSer]UI=8579:i^SQMMNJTaK@==;=@=<<;85<>ENmyfWLAGRNNPTimaLFIL`ϿXDG=6968?MûǼpwHkRMNko]\\bz\\=45=79Ofzu´PQE677577;GWR_I5-,.)%%+08~\\9-(,:PPUVFM^ôXCe߾L>NKN]̹lOVlLF?=@F=38;?AFW[=.-,-++5?HYY=>C`J>AA5+*+.5EƾNEdSPjtZG;4=Lw¸ĻPd}ǽĽ[A;48KͼK?<4-,486Iedټ_]Vru?23/,-2::7:cnRGKK?@]{|ʽF446499A>5>?AF^JD=8604;649RKFIHG57KA:9?DJbȽEIZX\\SĳI>?;2.,30/?<89<HRd޺ŷƾ}JFcQ?OkTKQʸSJHBOUGM]ú[QO\\O?ED=888>GJRȿX4'%!\"&##&('*5BNODMLA>3-'!\u001e!'13----,/7QZyŸtXD9:?Nzͻ|XQg˿L<0-,(&%&)*,0<L{ʽ̻^F;52/.-,**.349>CDSU=98;>CFNIHIGQSKK¶SHKMNOIMKFHO;ULGMGC>99:@Pj~cmwN?QP=<922:=@BAJRZcRYuLE;1061,,./28=@KPSRFBD@4..-*),-+,18;GPLS`ºhQ^ӿkH>=C;>JWUdb\\itl{X?611.+,.4:GQaƿf]WdvoL@;:CJpplRMI>:;:9>JKIFEO_̷Ļg_OB;77<GKC><>??>BIRdSE?<0+)&$\"$'+059<>;?B??CJLOMGB?>>?DOQEAGO]ʾVI>:?T}ý\\JB=:9624:>>ADJNeoPOUI=:879:?A@BM_úrQF:2//14;GVZls]OTPIBAFHGOžkE@?=?Y½pZWTJBCA=<?CHN\\ƸKA;:98=FNartjQC@A?>??AKYaodn}ɾ[KD;62/.15:?MY^`d[PIC=>>:66449;=BMTRY{ſxqżaij\\QNTRNLMLHKZYO=86;===DHNVQOfƼmgPhmt^kiǽaGRcI>58@C>JXUN>AB:87/-9AD@NY\\R][^GMR@K>63*1DCO<@[PȻO>Q\\]?;6876X7AMIT=@c?9543:?<9C:FXIVFZǵľdOsCNؼDMĻξA;N:03/,)7A</@>8LBI6)-/5AEJԽʿƸ?:90;pnCIN@94=A@HXiJ]XGk˻ʿnD<U[FTԺmySF;eȸǿԶ̿vm3+.5:570BI?F8:6.3@KG|qNE<LC5HjV]W<>=31?C<FDNShEJ>6;603==VCf˾ÿn]:YxXgWF;<ORûnz¿ya?>:7B::;[Pl=;F=6EP`λYKYTvʺɺSNC?E</*+2<:K<=GVVQCQ[oҽǿĺ]LvSCI]ZýĿ@;757=>=6ZDFDJC=:;=0-9<8>CB9?O;38<CCLZs¼TEHJD:@_P𼺴iN:3.,.++./..0589FovN\\zſĿ⼶hYAYfKgopmXkȽX81IBDȯPFOED>CQKD`G:7MɴI9@ghH@<=?14<DCA<GG<;5<<66Dayúka?<NKVr˵YYSPOrG?YKJE>B>5/-/36X;L3.2:>S\\;4',1.14=G_PTdEDfĿ̾kO}P>:M[[ྸ`A225.34:;=gLCP_^ཻA9~_wÿ;<9/8;<AZ˺þĿKU?=KntjMOD>9:600258;LQBFc^HHnaoֿLEMjQWPH9702E?½RH?7/9@59>YTJaG?<>JK;E@F;DNNO<?.,*,.697FJKз۾}G@I\\gfM?AsH88=30280:PO]޿QQnQTľȴZJGYNk^T}Ž²nGG=;:IJ?@eȻ\\AJML?McNaXNU]]_wUM̻ƽZtcGM˿?69BPHaBFY[[UKdSJWWHZKR<84/04?59LtP?LM?537>?E˽meSIABH422=nWVGBJE:PVJeOI::?89LN>FE>BD;:^J?yo<PVliP侶½OUQKHNƷ[ѼvMldɽɺgoK;9>4<EKƱκTN>OJ>857<:F˽J82/,.0/1>88XTLHTTdE=B@BK\\YJYZ_e}kVA:09<91<I<788FymQ=4/4>=Qml\\QDEMvNCCKe[TIFPŽyI?KĿMbQG>:CJ]RKHQ^IG;?EPoǸ·gYžKBJOKHFXXJTdP}pLľȼgi`~NgZdl}_YYG?M\\J?BVVoa_QYME>;=9>HpaUPPHF@A>>D>24<87<JEFTLD@Oz̾\\eúngQVF;88;;>LLF@JH9697@NWTGGDALjgLJGCJ|ɾILfiSKOM@XǻWSTO?>EOGPYOU忾uʻ{lhDKPEBLJGYhHXRaKQI837::<BED>:CTYNU_NoG749:DDGIH?>PV{|^GhB;=?AQlbOjPC?;;=?=>IMpaR[Vn`WP[MJJJLN\\ƾPc~UPH>BMϾĿmtQMM_HHP_ljǾrFE@C@IxнC=@GP]NUusX_ǿhxuXźhUJ>;95<<<FO_[eѻpG>:>IDk`KNpSH[klkpLPP:7>DZKIUMS[VJM:<GOejǹ[E?8433=XzOOTB>L]gPZhu\\_\\Usm\\VLHLTy}`J<=@P\\VffPXļNC:;ADu[DK\\n;;YX||[T^MBK@9=?<?QzSS`D:IH8F>325?`tXOBHCB_[BgW_HMNJV:9=59KA:EZugK?>DGEJA;<<;Je^QSti_XQsȾÿ׽jOEBJGPRVK]aVjNEIPX]UpgVY[Ypt_ahVVeRK?><>LMkþkN;?ESu]KMYTSXnEhPvݽžķYXHGHDLEMnlsWiNzhFCL659B]OHL:55/-.////-28EhiKF=8852777?CMO[ѺK??;;ESRand_ϼIHIKm~N<@UMKTMYVܹnzvULVIYX}kkǶhgikSk|Zb\\UPRii|WGV?<O]žQW]RAHZ@=AA?[˺ƽ˾popdKLU[UdcCA@AGI[VUmYPKRZQ`]MDMLcwZLS]ZA88=@<CUNG<<>Do_NLAITP`xQI[n\\MN[B@IF[\\~QRHAJDFIO\\rLEWżV\\ndV[lQI]UV^CRdTUprGJK=CKLKc¼ƻfYJT{_sľN>;AGLξmNOEHmrȿ[=CKFNI^SLUXRZLH<@=8@TĽUOU?@HIHCB><8:><:>>O{~a[J?69>9=LUF>?6>GDditKFJLNHMUNHWP@HWin[M]Xͻ<?W=>YƿElk>=?VPYe^]A=@HEA?lVKhtgJC_̾ZPD=M~lrviS<::AK<>Zoǻ]MQ[_XO@:7038<JPfD=?6>kÿ]_L=8>dHHLA:RNPȺt]L5.9eZTJǾY9,-<2:ELNOeeOξƾ\\P7.')-9˰]?LpWC6=I3/:59FG[ɻM0>QDFR@;>55857>DVϴZOL<20-59EXAOʨ72;YHE..DO>JѯĹnI=CC?49ü@3@T?;>=Z>[X_ηp_hP=m̯OI336MZ<FS]MU?=7)#(+4NS^k@77>=;DH78NܼEha=IM:c]K6ڿȶ|y~M<09EN8;bGɽkA^::?ApZ_{oOuN^î`YLGýHUƽ¾bK;0/0<aKmUA;:O`IIK@TLkvT=weDNHE_mZIG6BM>S<?u;820<<V\\^򷵸Ѹʹ;:7QANhD9;92?;WYMaķλZO^qƿ=X<.3@50F=134C@FĿɽȿ^u]pdDgHLFO=1./.000120//;9CM9F~ϻ˿h|:G\\GM0).>:49<JSǺʿB93<UNW?82..0DG>3756=G_?F껵Y@637796747*)**,,*+4:?S{KY]Zlr|˼E.-+&'+-0-&\"&+4.+2<HƷŶfhA8+(!$#\u001f#'-4^RԽI;LvsQZ?69A^sMLf׸^DG5'$!+3689;<>89B:64,+,110<CA67:6@JSIWüoI<1**...1G[JB?:45:6KĶe?C5/32.0>B=GKOH8+,9:<\\]Yξgh_޻½d=7../1F=>`]B>>:4)-9YiEI\\HGI?K˿A569?GOKξPDFV_B`Ži<:/&')(*60-7@NJ:3,+.2>`TV]bah|DHJ|ξQ<C<CB73+.59:?@Kh;0-3:8=Alƿ[XN71///129U̽KN@:9549@FRûϿjHKH@NNPdP>;799AIsmX?þRMH801Fۿi_f?=6-*'1EFJwǾcNdĿö|JBL<4:;=85C:/5ALKdB;67/,/<:DĽǺX=6<;,9H6<_ujM<667=94:86;LYE}gKоG;cPAeɼüJ0+029HԺ˿ôյNK|cAYI7hʻüR8E?/75.-0.,:ZҼDOkBK[ODJF4528?;FbNNbPKcnpVD;6>rdǹUVO>Jb]K<<8.6D@Hq˾wjû`̷jXǻr:3135DVVMEmnC<0*0<EοSNXNTöƺjE9:GVIBQFLݼG7./39P}]ĳU90408QhsPV^ƾ~]QFZɵι`_TG7-)'&(4CFDBDC<E<1/.73/7?I@OR\\`_O;33/1?EWƻoCHOƺlMHHɽYGҿǹSKW;LZDLܾVϻWSXHFC<=?;=>OLK75839FjlM;;IUXhnMIξ\\MDJ;17:14HC9NdZ:9<<?VkALP[aǿl7,+&\",2=C_bE>>EACK=:AZƼ>>`n˸»J997A>CRTLE_B5?]U{YQPG@lϻgY̻ϽX߿iLSzȽb]U@?CMGB<57431.*%$\"\u001f!+,5Zvi?:627;AM@;@cۿſKV\\iVNYC7DI?CLF8:0+,25:OG;DY?G^Nalg]PdP<`žƾujXHH\\ƻ|QIZM`¹zpºʹTPCBOACF:>SVV[»üIGMFxŵ̺aGgSbYNVLPUmK|[7;``ҽȿxKR=NjQNOs=:>5:BCMli=@Onhm:9-),1..:2/3<?Fp=58/*,/.69>9BMEnL>EA40<?NxD>P{ƶǷrCQJQ^FtzH3'+2R>5;A=[]ºϹVSɲƾİʾZAE;24;FpY=7.)+9lI;OEEiJ캼۹BRf;.+.7/+;BDiQUe<8..RUV躹T|ż]P_DRI0(*,(\u001e\u001c\u001f\"(-,3:E^8*\" &/+-5IH<N}Z0:;8;2/7=_FL\\ʹ{rF8ηɸſGZ`޺LpĸfEŻ}A7AXǻѾQCXQVk\\żϽXW>;dZ_p6.1G⻺VHG6>XGEVͼyOHhC@;;777.+1.C[r]L8JNE?NŴk辿>:9)#&\"(6FP<870A<,)'(./6<Jc@74-/B>F@?=1QW=A;:OIF[P815488EP±FC:?@@ο[K;<s¼Ѿƻg{KP[ʳ`>;;KHqƴҼűĿƶԸDPϵ]J?=AB73CYk;=L\\<29A>/,.,226?^Q53;N:.:US911MW:;Eg\\ڽK?c{?XD3<εZHt̺84OH834>=9_J5-1@1+6OG;/+<m:75=Q8?Z9=Y66q\\KF=IٺV;/B:2NZ^\\ǫNU?9?@FB63Vh;4qB8aXL>>͵ԾξW]ÿk==8*)+㭩mQM--B^G<>`@-.3/5;*'&'+<9)\u001d\u001f*-$%<CF7<Ȯ4\"(^>7.2X6-De7Bʬd=5I8#\u0019\u0016\u0018'(*46,!\"-As`/8F0(+-0.)0ΰ[ֺ<-'1^ĨB>y-6åD5KLLp+ \u001f\u001f\"(8I04LLe?^ʬK3ث;H=>=1@նj(&9G[A60+45\\½̷E^62+\"+-`ξiO8*'<3<,\u001d-[ǯUQYξ׹eN-D0-3;-/9>I40MM5E-\u001e(+,0%\u001f\u001d+d?8J>4M>H_P߰80+52219=OǺRMi418(\u001f/N;;2ʲ79//N27.9ָ˻ôథͬH]彻h6/,.!)+'-:;X֭>//ð1+$\u001e\u001b\u001e*2۾˼Ǻ]9:?/I9<HDK75B=O:=0+<9%%)2NF>D;l0\u001e\u001b\u001f$+>@=͹K>]0&#&'(<=;70-'')+;6+6.  5xmXOۭ0#4)%HW.,,SI##,\u001d\u001d\u001b\u0018\u001e,ƵZຫWD}U/96JVXT.-?E6'\u001f\u001e+-'&%+:?<&%.>e˼^t=2,4`L-'!%D{®|kİPJH_7>IJ54)&->I|5#)E%#& '7HK/ ')021+57DN&-G;.K=0P9-)88%-*\u001e(36-\".0@ºXǷV7N?AtE,(79HW:51'#\u001f%7lY۾C-+'0*(=ɶj,n˽^۷˻ԾmUMƬH54,\u001d'4<eƻN90)*'-,1@;;500?^@EF,T޻VĬT;E;IS3'(-*$)9CEɾXLN@0.'6JرT>6,+*/.4j`7*%+<42F}qҬN˻Q=AUMSTw.&0Ih7+2+$\u001e\u001f\u0019\u001b(H˫ɻTD72R75,.'(X<3\\KOKF@G=DgIF,*.6Zs;WPPJ6(0>349(%(+۬XǵǫFPHI@+)-5@Z?(/?=A=<3;ůC﮻S¾87-=ͶB3\u001f\u001a$2KK;D<73K_IJ+\u001f \u001f#,$)IFHA,,0J1)6-(*-5:Rż[39Mʹ^5-3P¹Z11FNZf_NBCR<&\u001b !&3:ѱƹU8,3廩LEVɳfJ.)SſA.=>Z/ \u001f !/Oea8.'%!.fi0&'+Bf=9=BNƾHjf:,.3>JSͽ200?scH=ȱk<23=R^>8`h;6.+0@eaλqL\\pQD?448\\n<14..GtڿBNdñCW\\IU>4;Y;05jͰB0+)#28)*($+::-6̹IEʼ:8E;56[ɾHJ6ONH<,\"!..3챭;տ98#\u001e\u001c\u0019\u001b! ';Q?5.LMOTn`8--<9<ٽªXF::DZ>[fn_@iB\\2(F~Y=0]K8>RK61JOoӱQL0&))$#\"(Hf;:ެϹ˾ڿqB޴TWзl99GӶ˵c[O]92::?GE^7.602,/3Pľ\\:+3BE9/+-*27,'$\u001f\u001e \"'/</9::ٷCعʹRӵv<¶99;,'8˶˿E@½f6>ȿG%/ةvJ=7I;OJ-6翣ư0$*+21)<;+.?/)=~F(\u001f*M/'8h4JɵE )Fй<&(.27*KL++)<<-1-:2 \u001c%6>A+Ϟ޹sP/(&9N+(11\u001e\u001f,:--\u001e+<8|ELkH%.TfFD9NkU,-*\u001e\u001d)*)>DL9#\u0016\u0018\"<</4?cn/\u001f/ȴkì¿'\u001d-O7;ɭ<-+4EB9D,*0/4^߼S=6<Ѳ(\u0018\u001e#(%$'/8*;J0%9L׹VOGSV+.ýM*)7X7&Lٿ﷭ǱPyY0-GH%--%\u001f\u001f.1*(5?4--\u001f\u001d,ҽH(/E'$/d?=0).36?hJ.'3,)135+E;<GnİN4bP>69)%$.39<>5E.\u001f!\u001f\u001f-V@;7;K</HѩM:/&#(7ʶW.T:99@<M./A5,<D>mfDHM& \u001f\"&$<?A8*;,%\u001f$-(PL)5+=H2>8ͻϯm0+&\".;򽷥iwZM;FS3S;.3>>LŹ,3;(,\u001fFI--\u001e1&\u001f0.8()8#%,51#*38*$HD'++\"#*(+'&25.(3-\"-6M=Dḏ1,:9T^/\u001c\u001d\u001c\u0016\u0017\u0014\u001b$&-*!\u001a\u0018\u001d&*(-@5,4'%/G66%\")=Ÿ?KMHOKHs6,2ESG;4/.6/,#)=86'&/0@:_WT5HB]ɼIEȺ\\#\u001c$+-++>C@&\u001c\u001f\"<ZRM.,'0=S/7o\\WE''\")..CJ?.%!\u001b\u001f#(>85)# \u001b\u001d\u001a\u001d2A_4/*'\u001f\u001d'*-)$&#*.%'0\\FAaȲ¸t=:J:>2+81LD4?03+&.*./+-\"\u001f\u001d\u001b!',/2@4/+\u001f%,'(0L;4;;oڼƻ^ů_M:7=pE-+*)*+GN?71dƽI8+%\"+6??701'%,5IEEH==60,.>GMHjaPʾĵ}^SR˼_y>88<9>F72.)%'+/10/9N>--/29=;1.-**1BLeֺRrĲD9Go[CA4&'***,0*-3)%'1XG`B7.,4INWV</8F康\\;607[üM>B\\FE_[tFEH?QD-$\u001d\u001d%/2*(/3-#!*.53()##%'/7>EOyz޼jRXWķ@L<DPعǳlUdűOPPD8:GC>:/,+2>:68/..-*(.-45...@ۿQ5JɺxGsĺ۸İ¿ƺ¹ʸĹ><Yc^J:5-+.117;,%'$(&\u001f'+:JD739861+:XDFIOB3/9,1.-04IR[N»lPA;:4;:9<-,..2<773-(%'%',)'),697HPAJH70218Ѽ_c]E^οıS>2<CJ6,001,(&&+)&#\u001d\u001d\u001f\u001e%(,3<8062047=ds]KbgoȿοduOZKH]O8>2,,+-*\"$&% \u001e\u001e\u001d $'*+*(.33+-@[ZCJFI6;=~qONſ¼F?2.+55?^MYpgB=LLDG<4?LDF<9TFCUP_F?[OvwWXzsQQnʾLRȺMZ[ȺhP7//*+,<>/+)*/)$/01/+-,+)22-::5;HO?117779;5?IDFCXIGH`ì^=TH>{w>I=:8-,/477;746/--/-(-2569>BJNXjw^JO>@@;F:7DLFS¿O?EON[UVYpQKOUF;9:;EEPFHEA]]OFJJrJ@JZV`KMG?>?B?E?AAI\\KhaźcVYC>B<MXLVL<:9<J_hMSG:64.06::==>5/11/.2403425459668315@INĿøÿɼ[V\\VXhe]P@@JA;C>>A<@58<:747HKIE@@9:;=9?IUWKetb{fmļ^hd[@=768?IJMD:210/.49;982/0/-25;ABH@=@HEBEDACHJMiÿüſyenwieJKLZtsvaNHCDB>=<>CHL@MWTD:=CUOiM]rKQEFHDLUSHC?A[f`m|_]pm[b]OS}ZtþbURLDM[SpI@==;89>HPWPPRLLKLM[OPLHNFSSUjKLQ|vVSM]ſ[sMKLspZuP?9?IQkxhOGA@A?LFELF<99>B=FJQx^kndeǼ{ǿbUMQO_qTd_CHITTKNO\\JLGEJA@EGJ<<??;<A@Mvc[LGPHF?BKKXgsɾlTYP@@HUVQLXbQ@:>GLRO`lNG?HJJKLL@@=<>?<=CR[t_Z\\YNKLKOUOQÿ¿_TzTOQ\\`YY[NBOT[TimYTF@92/./4<J_``QUXVøepr\\OLE;;<@OdlQIDGV[LbRN?PM@K;HTJ?DWb\\IIQJERHB?;64>AHG<>AMJRRYi{`EGRXaɽ̿μǽ`KOG::@A<??DEI_ZFFC@C<>@?CGEED>?;;?AMBI]o¿ǾaQNMDJ@=<92/025036576537376:EJUɾz}w_YhkQLGB?<;?><6;==<A?:<BMVTO}Y^OVG=909;9;<=C;98?JLQJOhe~SKsecot^mxZ`x[OORJWZ^r_]aVsri`KVcKlo;ýzhJJE@BCCALRD;;?=;GJ?JHAC?HOZWM_iE>SJPiV\\TSL@DIECLUml\\pRXPIa]KCBC>Rqyƿ[[qaN^VXlYapfNZMUNCJZIBGOZWs}TS|[l[]j^dbWV[dVNUg~mx~{~Wep\\l\\}vomjun[^fXD?EJOFBDFNIA?BRkU[eýzD=:?DGPQIGJFD>>>><23<GZHD^`lbUi\\GNPEQb]\\SQ[RVfTwQLZaXL=>NFSV\\KVeǾ¾hUCA?^VFBKOC]~N@?==7NOO\\_}ƼǿjRL>JNTuɻºXNEDM\\[DIKK>:8;;IAj͹ͺ_XoHRV>EHPF;;FGKWQQ>B@=>h\\ITodgSYȾ]k\\>=<BNUɸ]J?@XEMϸPh͵fI@8**.@<?齹ɶE:B>/243.4IzkE@INXGXUM>F^B;>L@9e=ͿV5C68;>ʿDM@/4UgKIǻWԾcZ{\\=?8<FjA42N=ʹJXKJNoLLͼ¹J7>=;KAQZǳο[x|:6I:47?:H>`´:3FG8<ZJj]nsJˮ;9J^@09QKLtE>XWI_Pp]еSVK;,.5?>I|i^DLLD;;]TKDjŲQLH3-646K_ȵ}dP@>US;5:B?4Q^۽ٸ\\>57<AJDGշøq=.2.+//=DInSYJ[EBM?=JgSϻQFPA9@K]DWS]RjN?=20CTBŹػſbi8.8<Hlӿ;Ǵ;6598,&\u001e#6NpĻǼ<7h=0-8E5ᮼҶoO;B9-.-,:/3=:;?>ZA50&,3:\\MbF񜟧|PѻdGq:)CF/7C0/.,,,$\".>U˺λ[PO@̴:$\"6,\" \u001c\u001d\u001d#.#OܼؿάʾE;- )-+&\u001d(4*(0WF<-.?C\\0]G.!,IVLӴB\u001f\u001d\u001f&&%&=~ιҳ]%\"&`>%'K0'*9Eg|Ҽ˻mBfU*--58C7/2<9/%8YW$\"):^1P9*:6.51+CTOLGm?.4OŪ.') \"8y4\"'A>-)&\u001d\u0015\u001b/(%@ӳ?1CA0,?ĵ:5V'%'*+yx.5+(*3>3)]U;>iTʧ_I35,:93oA&,OY2\u001e\u001f/$(8-.-=Mc72(\u0016\u0015&'$  '\u001f&Uȶ4)!\u0018\u001b(8C?=A?HiîC8.:61>7Euɷ䜜>C[I=%*!$\"+/-9Yǥ;DD9YY-4G.2Oк?װ_91:m..5'/<6)7N73?A)28:ɲ/)@70ST8)\u001b#0(\u001c\u0016\u0019\u001b\u0019#(*&+پѬOɯJ:KDJ<Y7\u001b!+#*+7>-I>8wά05-05BGD\u001e'9U&\u001e&-#\u001f& \u001a\u001d2*\u001e@kή:Ľ>@~nDǮI3G˷=é]UC('9?.\u001f\u001b\u0015\u0016\u0018\u001e-2*2 %)$\u001d\u001c /?N:򰩮sV40-3̩K]Q<=4.>O3(.F>ׯLI<$)3\"\u001d\u001d)6@-==4')I,#/+''=E0+&#\",-+KJ58H¬ϺY[m+,% ,75wpǾZ࿰ǸMX7-$%!$% !\u001e\u0017\u001a$5<&300쪣մANn0)(\"!\u001f\u001d\u001e\u001e'.,>?F˿8<GXL2:F:2/0<,;;VN84LSݽξîeWZö>2.4;6-P̼EĴ=J7&%-31+#\u001e ->ݵy.3é9+%\u001e%78ѦʲnüOCn8'2]B:WF4*6@WV8C94ce;:Zɹ;9SɿX8;<8mʾӴ:90*,*\"%0`j./Uz=<Ui>GU$\u001b %'*,*1xûqV貱J`;GJ.%)6HENAG\\?>YO:;UTIM}Fd8,..+-OekxND𮧨UJWȳ׶H.5L۽dB9>bK-%#\u001d\u001e$,% $&&,;CLwMcҾcwM898g⸭VD:K=5>TiLSI73-.1/<nO?3DRkۿؾNCJyǻŹoOUsռľM7AbM|@:;9AAFF24kp]SJ?UJ65.*-*(.Guվ\\ijCP_8FͻUROKA޾[TGMKDEI̲Zͽ\\ZHI||鱨¼\\ǿ_H<<]n>65?׾M?::0@lA9PŴE^Sgżh=OѶeK6:33<;TS0[H:0dYM>NY>δLOWtn9/./*)1Ox忮XY>-45-)ش^@2-7A]:?]18V9Ფe]\\7B+)<;«K;ZL{hK>1NVWB7PH5(,4/+:<D|mY+<63-0A50,JϼԺƨG,-0-!#/L8 !0I:M=?QPDKԻMլG^ESC?/&-0B(R`[mEOfTGYϯ۴=3('!$(  \u001f\u001e$)22(0NawB@B288852=7,;m5..-,./':2,589.:J׽{t̯˼ֻZ0'&!$%,6?11J?LݽK߶½EHE$-.+8XC3LB7ŵ=DW]1,Uʺj?u˩κJ+597'0><OKLh<˫MkY793>IF6/+/6=4,7Y<-2)%\"0ٺM-/2oL4<뾸ų̬2+\u0018\u0010\u0015\u0016\u001c\u001b\u001e \u001d%%@}J=Ͼ;FXJ7477T<;<JYC,%$\u001f(-+0/0'*H<0;:ȸ޷]/'/)\u0015\u0014 (\u001e--\\^04ħѻ֬7<H1$$\u001e\u0016\u0017\u001f$\"*$ !$):ѸSĴFջêm%#)#\":4\u001d\u0019\u001f\u001e ftA4,5->E@:p( (96fL.&),5JK+$-6/(CTI=2.&3@5յN,\u001f\u001a!,95[G$*/+-,+(5<$&8N7+mƱL19=1,4>\"\u001c$*'3~AmD϶^0/>ʵeN}:|C<<MH67'%\u001d\"/\u001d\u001d\u001d\u001e%'F;6I-Gq?FYXIմI5:5?)$%\u001f&\u001f\u001e$%635F=85/QȲ\\GpŻF~Ͻ=.;>MaPfGĹPYB8..&&\u001f\u001c +'\u001e\u001b\u0019\u0018\u0017\u0017\u0017\u001e*#$\u001f%)%('39:5,-)&+4L]=32=:,/30=eKUA.$!&+-/,'!'.)+9%\u001a\u001e.-),--.07DZ|/'/BM=### \u001e0B\u001f*H)$*2.1ȶIOKMG@G۩OH')7?%>6KL02TɲðvE1(&.88,6h=7H7.@}L&+IJ9óȾ<9/&%0o;0E- +-(%;?&%) \u001e%/,-/)'/:DJCѴFi¾ļcKuE4.+$\u001e+(\u001b\u001f%*\u001f\u0019\u001c\u001a\u001e $6-1>&\"\u001d'E>ĻͿ\\_X,,2B\\Ի఩S=45SʽT5?^Ƶ92EZU>-#\u001f /=;NIE*-f`P<g1?XMoӺƴJ1=>/?V>/5;1=μ;6ٽLîC9D?H@;39WBIL0,+/.%+2=5>O?BYdƹOE/))0638><;z㿴¾Q9-++5mjg~ͬĴ7?V\\G0+,?I;93443@;/*&#\u001d$65327-.WONZD3<y?58;:.ELTtUļf<PhӽZͼ鹺\\=GH6,)(-)(0;><SKLC:<,*492/5-+3=GFBG?W]RG9?;51?P2AZBmͽPNƴַC[C57/,*0=28A9366-/A<700, \"%(/9I92>?41;OMnxYGMgcgQaEWF=9?I>?_R?71:;E`MOmLVj@<B1*/56/094167;>H\\GKeh<3IMSnIeR>{ŷh_^ؿûýXDN^LgdRI9.+19<qG4452-...34/+(+,05?B@EF<4Fsк̾yLYYUJA52<\\SJ=420/,./0.*)''%%(-...,*&',:N`\\PVW^iWS];{ʺ¼]QU`kqhE>IMTVJKAPdQJ=?D7662.,/205;4.2?>M\\Zſyռ_Q]]b{vTGFGFDGE>?FC;FV_TXQOREA>9319?;9;67<EUt{öŽZHSMOKFF8:BM_[ND:=:74.*)')*,+()(-13:9=A>?><=8889BHWUUkb¶̻LjʿL:0,.0/.-+&$(/786438<==>FEE`^FBE|ýVBOy^GAFQ`I>:5:=CC:::A^̹]JTVWS>5+(((+++,/6<HQFK[SU\\WNFFMdzܾĿȾ¸ŽvcynD8437<<501457CYQD<=BN^[@>EIDLSJXɿ`SThĿĽr{XU_OKXſrWXYSIOVLHL\\O><=?>GKACVZO\\_D?DP]oLIVbͻʿž_TPLIIB7..-+*-0,((,-./1.17966;714=EJGB@I[XNVÿľĺþ¾OPbkr^}rih[E<;;;6555=CL`_RN]g_bVTPJM^ºXXj|lYZPV\\LFBPj}~]RKKDBC@B?==D_\\NMHINONNdfWTUjajniaRHSsweZP]iYMUnRONMD@@@IJFFHNLG?=A?9557;=?CKNLMYn[NLX{vgÿ¼ƾmknSJINJMW]^SPYj_JC>ECK~yc\\VRP_z~qv__^xoil_meRIECAFJYl[OGA@?BCHG==?FJKZUWmi[V`XKJLOOKA=;;=>?AMOMO[pŽeb\\QIC???@ADFMNNOIC>CJM]i^OKOLKTeſþx{ptoiYPKEDIZgYPH@?BEFBA?>@GPY[e]X\\U]__zdnjsz~y{`^djxw{lba_iſfvg[UP^[JA<<98=AILLNOLD?N\\ifSRLMMR][WNLNQVYU^dXTW^\\OTUPnþ^MNV\\PIPOJHE@A@=;<=975:<=@DIOOMJFX}kzŽpiVZ}W]PJWPQQ_\\TC9:@KNIHNHGKW\\_kZH=@KVTV]ZONKVEAB==FNLLFJLR`]taMO`lo`\\[\\Zjfuh]afpZPE@ENQQgpxlkspz}ZJLKMIQSJPgot¾ſuuu_^dlnmWNLGEKULURO[Zc[XKNpveXKJFTUNWDIMJRMLxʾ[NNdZ~gnXi\\FEUS\\XOTMSYZ{rQAKB:<ARpuWGHE<BNTGc~LKMMAHTx^YUOLJSB@IM`RO`aUlHBMPO?GKNXI[Z]v~zdNktlI>LBEL\\yTo__id\\[fñü\\`~I=?DDATvA;CKF>EeV]^oKCI=HkQmibibfýmNB>O[MU`|OGNXCFcZOLKN\\gofpm_^P~@BN_b^y[j齸{I>J=<IHVֿɻþVMXCLB>?AA?B5@AZ_Nm]:9=QhȺigJFGDA9=SRFYMXyXE=6@SSENrKHEB\\lQmZgT_=]Ǽ^ȹT^\\^dsûW@=<C?=G<9K_jLJE><17<;BE\\MNXMjLTA<ggIM<Oq;.79BDRqHYMJgE>=48M`}ҾνYMC=BFEL`C_ظ}NK=:83FF>ӽRB=>EPYLLi强\\QvH62<PZټsW?MG27LPi@8I>=b_44[d``]구`<DڼU?>3),))/8YS÷˹WB7=NiڻűC:@8llIa:@h`\\WA.27;16AI8?OEJwf^gѴoƻ}s8/.77)6IDCMcҼu@SjeJDUPn̺]<kRYZT=CJ.-PL9?K\\bٻ`dKL<-1IռNSmtJ10-1³˿wJLOG6')+-48<GK۹ԸdE<.;K쿱XDxG:VJ77KKC0DXžlaNN?7D]<0?CD´ǷӺ\\FA24++47,:}Lj˴d>).62?[]ȹþj=',HO3Ik*C<3Z \u001e4Y^C?:l@K.89[æ¤>:jcC;1%\u001c$3TFyʷC++-C2K9CO˭\\m6:ͬD48*\u001b\u001a\u001d\u0017\u0014\u0017\u001a\u001c'/C<:@`AW8g\\_ȭ<HC,$-\u001e\u001c%8-#/5\u001f\u001f7XOVN4jóEۯF8̩н@QThŲs=F]5-1];:ѿKD,\u001e~U/*\u0016 *++B0'EwʸƼcMC,;V2\u0019\u0019\u001b\u0012!\\*/0*O902^>Z9'-C-Ϳ:').>]')6Ǯ6/\"%80\"\u001d\u001b\u001d06,7@;yh3&6ϻe2ƻB.,3$-852!\u0012\u0012#\"*Sb?71:9(&+95褮2=C-<,<U-*.%\u001d#!21>\u001d\u00195=ʱA\u001e\u001e-@8/F$,5\"/ͺ򞗨N3.9B/G94ޥ837\u001e\u0013\u0012\u0018\u0017\"2+09-(=&'53/%\u001d\u001e\u0018\u0018\u001e\u0018\u0016\u001d\u001c\u0014\u0015\u001b\u001c\u001d\u001b%<4}zͰW $\u001c\u001b\u0017\u0013\u0017\u0017\u0019\u0018\u001c\u0018\u001f+'/Bwi>5?18&)! -)ĩʴN;2!\u001b%$.9;- $6ת8%$\u001c*&3[94 -Iü7=ODN\u001f\"\u0017\n\u000e\u001d\u001d\u0013\u0018\u001c\u001e(*:>U(\"/ڼ/:7**9)Q+#Rί8A.\u001d(,g<5$\u001d! '-z0\u001d\u001b\u001d\u001d\u001a\u001c\u001d!\u001e\u001f5:Ȼ{]?Bڻ-+!#)\u001f!!'!&(?B\u001f\u001f$7H9$\u001b\u001b)ɫzCG>./|9-1:믰G>65<59)*=86NjH:B5-a<DYBԻ\\/21ϲ@9K:\u001f\u001f\"-.JG6Hٳ-.8.-08>T½M(&#\u0018\u0013\u0010\u0012\u0016\u001f#\u001e\"\"16aNFB#\u001c\u001a\u001e&*AZ.6]A>vƺZ^߼S>@8:=+:@60* \u001a\u001c'>0&%%+17=+($9|KaA:=,\u001d(/.9>PiúeiLھ.\u001f\u001f#\"\u001b%@_츳8DO30A]侨̴0\u001f\u0018\u0017\u0018$@. \u0018\u001e\u001a\u001b\u001e,0)OݾU?4</\u001e\u001a\u0015\u0010\u0014\u001b#*6H9+,+,,-,%7>;;nmZNF/*-.9=˱S8$!&\"$'*+-305TxnK8%)\u001f%1).1JNU¿W·пոNF>C6**&\"+,+8ӺżʾͯaGͻȿúǱ@J˾ո?<?6938ᴯH0*.<6++9F;?GiQLP=134::epM?@uC;IǲK1-+)),52KUدy?.3-)+&&# \"$1GA;2'$\"\u001f!0<,+%%)(+/9DY038-,EýPM^9-21-.<:>ѲMʵ_gĴP¾PTEEܽE4/01733Uٽ>8;I}g\\[jӿL862CzȻMEp<SA==886FG>EO@/?T^>S\\5^KA\\B/0*=Sr54Nž575057ED.JKBX6\"$:>G. O;\u001c\u001a\u001e$\"<ͧ.æ>V-ѭNP1,[]A:/@F3#%;=<ڽ/;E*&J9>}̰NķԨ')%=?,?TZKӧ[22-\u001d{76;įѨNL^=;qKÿB5;S*$FFB'6:./:m-Bĳʽ0&\u001b#$\u001f/,=WI٬N.K;;0(5+4823C.5**\u001d\u001a1*N:V;2#٩]8MR<*\u001cU:1ͧlN84\".oȱHAYἯ/9N8*+-W;ݰ֩巸N3>HIl˵SH^׫K1++7.2̦ú8Ky.\u001a\u001c%/0ﹾC5(\"HMZ%\u001d!(6\u001f*6<K5şNW;(=*'5-,\u001f7*\u001e(&$\u0016\u0017%#%,SME^ǳKWb2Ƭ:MLL0*39Qӷ(EE*0=0\".)mͮO2#^J%*\u0019\u0014\u0016 '\u00186C3[>$Y((LvҶʶ7C8Q:/-*\u001c\u001eJ<74$\u001a\u001f\u001f\u001b\u001d&+$.JCX>=?/+KT50Z. F4E-\u001e6;-;JWa;(=N69G;;6,ICU/476<6;>D=&!8*!8B\u001f0ƾ7ҽ6/SNJ/$gBE*$,4\u001d\u001a'32מ:2_^<lDS˭Ű̾ʣI.52%)0 \u001a\u001b\u001c\u0016(<#):C6*'%\u001d\u0019\u001e/\u001c\u001d(-20V̴?%5V+,:ʮB絶˱EKO+\u001c\u001dHٶPI8(/4\u001b\u0010\u001e##!#1,&\u001b\u001e-V0()\u001c\u0017&4D2!#)\u001e\u001c\u001d\u001fA{37Y><ġ8[BH=7HcԮIɦȸ?\"! \u001f\u0017\u001e\u0017\u0011\u0013\u0013\u001e\u001d#'-89[H\\0+\"%91;ļI./L4\u0019\u0016\u001d\u0018\u0010\u0012\u0016\u001f\"\u001d\u001e\".CJY,..#))\"\u001d\u001e\u001b\u0016\u0016\u001d\"\u001a\u001d).\"!9JDhE8/288<\\¼ɴί;4<LtI.++ \u001c(7\u001f\u001b\u001d\u001f\u001a\u0016\u001e$-;.),TVT?+'2?2Kg2*/G;ɱͮ\\ǫF'(6M>ø[<LQ8.@<LLKɰ7+()%\u001e!&,%\u001c #.@II(!(*.*4-$'-bǾ77RN=\\.#/<)76::1,0>BQ/3B-5,#\u001e\u0018\u0015\u0015\u001e\u001b\u001e\"! \u0018\u0016\u001e*'5C6)'%,82;MANоٿϼt\\leG0Ep5TkJ6.:ǮHLb>*#,31>_ŻF6,J[̷SHĻptj7]=@ŷƽ꯮A,19;;嶲ڻ/ (&\u001e\u001d!75)%+,,:x:.:5/'$0-%#+)&,.vB6[|@=FcJ76JK^}į>:Q;Em˲}LH//>8...%##*6-*/5;RMOLOMq:/751;@AŶ?<=L`_ȯɷNEW??=5*+*#\"'7>?zOU8.)*+*,:7.8;:Ie̿a[MOJC74D˴ɻù_MHF.% );>F^nT?08>76421*+25;F<DKC:8T8(%&('&$+*$&)3,$+995=GFƹYHy^RJ]̲YHζgYNeܹκn[lN;<3/4.-).<TdVɻ<>DȻh]μøiWSN4,5/+,.4AKVWC<:95=.**)'\"\"%'&'$(.,,.BGIgfӽK<9/7:ͺMM?977851-)*.5.--+$\"&&*.21,'&&',),-/-0<8LʼfNZwп߿YLcKES;/5963-,*,.*-06,0FZ˿X[kf迹ûgoKSTWD@<45<77</*+144980/;61;6)(,)().-*,58>[`d־aUxϿaŶĽIlþS}ԾoZ:49===8300=@B@6,.:;IfYYiwyQzJ;ҿȿԷFCGH8/50.++.0,%#$*.*++''*491*),,+.3<92;bĽͿeEGZFLROW=>LN;<D?HNOvL><QVttUGOPB;0*),+++/3027@95=?N^PaGBTbgteM\\ʽǽŽ´Ǻʹdy_LNc_N_aXPLFHe[AIFCBURMJ;04859>J;8HO\\dpe^gNaQU[RKHEL`eMN]YP\\mbpLKQT>=935I?=>=878238=6198/14225:0-.+).;:=><<>O]̿ɽɶƼxMAC>97;5246548766974;?>CRC;@>;:?GMW~ƿȿûoM@98;<56=:6//1./4<=>A=;?==<EE@<=CDNc^RQ\\}PEFIHIQkROFFROKLVQADDBKMgNA>GNOGMPHJMS[Zg_MNE@LNVH?<;>;@?@74315599:=@9:;;?@TTQRY^aÿżŽ}ƻg\\PNIKADC@99>>EHLKLLN`^wplg\\^xclɿhLKKFKME>D=?@?C?@>=7673976637:;=@@?C=9:;;;?@=>9;;=GNm~tUVZboPSHGJJXTR]SMLM?GmjicsjiY{xb\\OPXaY[`XTbXKIQqZ[saPrȿ^P_WZavW\\rĽɿt|aE>?===<:9<===@CCEKNHKIEKIJYp^`|}yoapefXOE>=>?B@;88654543422441142351/./37=@;65349@HH=9:;AHGGHFKTV\\^jƾvow¼wrdhgWRXZo~tbifZ}oSPRJVVMMFFCBAFHC?952/,,.-,+)***,12..++--/34254289=ERb^t^UHCKRShsu]J_s~WN_ĽihmsmROLFGGLNMPQLMijbgiWP`Yh`jRKHES^gTPUY[QXONFEBKMO^ikccpkpUUcfq]fv^^`MMV`jj`REEHEB=<722443897879;7::6<<::<<<?@HQIHHLSOSebc{Ŀún]m}ngl{o_UMRsngniX\\__SNU^e_\\ONQTmpYTZ[XXRHC?>CE?>B>=<>A=<=@CFBAKLDHMNDBNU]YYLJTPRZ\\pmu`]tSJED@LKBGFD<CHIJEFHNKKM]uVplfkpf`zt¿ÿ¿k^kj`WJJKPSLNKACFD@EC>EH@<=>;:BLFHHB=>C?AA=::=<;>@<;===@A>DFGD?B@<<=><;:;>==?FD==?????>DGEJMVP\\eȿž~`^\\`]`^_[^_ZeaRQ^NIMVPJLLHJOOJMUQ]degfcOJJIDCHC>A@===888=@B@CFDHLJOMKQV]X]ef]]_VLNLJMM[YXTMNPNKFHEDDEEBCEGKLIGFILKKJGIDEHJUVXZxvÿľrd\\\\_^`ZYZNHNPXTPSOKNSNNQKLXZONLKIIKLJEHFCIGCA?>==;<=<>??B?@=?CFFDBGFGNUVLJLLKFDDAB?@FGFGCECDEGNKMJKOLPQMQS^Y\\`]`iua\\p}ipĿr^YWWUY_VRSLPWOQ[OONMX`efaopveakY_b[PHHGDFHGA>=;;@>>=>;8;;>>=>=>A@>BCEDHFCA>BECHGFDFKHIKNSLLMIKJLMJKIGCBCFGMLKGFMNTVWeSYdgk¿¿ÿſld][YVWVUUSOPPQWPW[TY]\\[YUVNJGIKJEDHGJKJKLJJLNPNRNNMLLMKIKINNIGEDCDBGE?CBCGFHEDEFIFFFFJFLLJOPTVTOSKKKMJLSJIFFFGJHIGCHDFEEBHIJKJOOOVY^mh`}ſÿzsdZ\\cbZXXMKTMMHHLGGJJFFJIKLNTNLPTROMMLIGDHGFHEE@?A???BCDFEGGKMMJHHIHGGABC@C?AEBDGGIKJGFIGKKLLLMKJNUTZZXTUUVVRVVZ`ZY]lwiukeai|fk~mx{b_e^mz`iln}¿Ŀuqmdkkc^Y\\^uq|d]WVUMMJGLGHFFICCEFEGIBDDAEHKJLLLLNPQMKLKHFFEDEABD>>>@EB@ADEGCDGDCEFEHDEIBIGFKKJISLONMOLLSYUU[XY[U\\hhbab]jegrlap|¾yw^a[ie]]Y_V[]]ZPW\\[TOLIGHJID?=?AGCBF?GFIOLMLPNRMLNKKLMLLGFDDEHG@??@CBABBBABB@@@BCBABBGJGIHJIGJHEDEFFGEGKJONVZR\\X[bew}ÿhowa^_fi\\_jX\\[mbXY\\ZX\\^`[X_SSUQ]Z]\\YSVSKOOSMJJJJCGFAGAAEEDFGHOONNNOVRRNILJIGLLKMJPMPWVY[^W^ZVYXbYYSX[[_\\ogog_ri|milgf`sibk|sxomosfidlmb[XVNVNOMKJILMNLKMMLGJHDCFHEGEFFJHIJINOIMJJKJFGIGFFEDDEDFFHIJLJHJNIKJHHILHDCFEHJGFIKIPQOUOTTTTQTXSYXXXQTV\\fchim`]jickdnp~ÿ|kq{v~wvyc`brc\\b`iZa\\VRUZRTPSLMQMOPQIPSMOOSOMV[WOROOWWSTOYTNMPNHGDHEGIDBDDDHDJKIBDKMLJJMPJROMRUQOKHLIEHDGEKHFFGIIEILNNQPNNPWX\\PU^_x}v¾¿}vvum_p]]idVR_^ml\\ahjblgpoahhvgeY_\\``[^WOQTUOPLSRMKGHJNNMPSQNQXYRSRNJLLOKOTPMIOPMPTTNKNONPNIKNKLMLLKOMRLOMHNQQLNTPQTOMLNKMKIJEIKONPQOORXXa]TX[[if`b\\\\^\\Z{iy~}ppszonohfma]^[]XOXOTWTTPVVWSOPOVPMLJIJC?DFEEEACCBFD>@B@?B?@A?@@ADEFGIKOOV[[^U\\_]XVY]Z\\^[\\cYZUXZZXY_UYZcW]]a]ROVTTY]PLPNNNSQNSOTWTRQPSXObbY[g¿¿o|mxtn^gr}lj[][[a[ZUZVLLJIHJNNNMNLMPQVRWRT[Z[\\YY\\^Z\\YQX[^YVWPOLKJLJKGGJLKKMLIGGFDEHGJEFEEDEBAF@@B@BBJHBECEGFKJLHNOJPNQWYX[Wdqz}|nka^\\QRRSNSMHJHGFGHHJDFFHJGIIG@CBACCA@@@ABADCDGKJDJLKPKJLLNKMMNNONMNJIJJNNLLIINKMSPLMSQUORU[\\XSY_v}r~wtpxvujmm}uhwzz|wx¾xfked_n[^\\U\\]U]b]\\OTYXSONNOKJIJHFCD@???>>==?>>><;??>?A?BFGEFJKHKLLGGJLNJKJJKMLIMJKKKMJKLNNMNLLTOQNTTTUSZQSNSQPNNLLW_ROX[U^_Zf`ptsx~ml\\^bZ[]e^YUY^PSUTXQPQSWWVX][[^_^\\^___`\\^a]VYVLLLJHEGJECEEEFEGGGEFGGIIFLKIKHGMNJLLKLKLMKJJLGGIJIHIILIHJKJKNPLLLNLNLLMOQNOOUUSVSVPNRWYUW_\\WXb]Xcfmqpnni~mgh^b`dhhoiooojxpeyh~~_kb`]_\\X[TZ[TTJMNJMFCDDBBA???A@A@A@DCEECBCGDCDFGHGHEEFGEHIGEFJMMKLJMPPROLMNOJKKJNOOMNSXVTWSORNLQMNOMPTSUSNUV[XVTZ[]_\\inyÿ¿jn|zci_ibad]e_ZRW^^^[\\^cgnpcdi{qkf]birdZZUSPQQNKJJIJIGEIGIIEEEEFIGEEEHHLLJJJLMLLMJHOPMMJKJNMOJHLLMKIMNOMNLLIHNIMKIIIKMKLKKJNNMNILOROKNOQWXWT[V[faeg`ovsiinbaZUTPPMNKONHJHJLJIIJIIIHGGHLJCFEDFGFHFGIIFEDDFCCEFCDDCDGGFGIHGGGIJHIJJMMKJKIKMJMOMLIIILJKKJLMOLMMPUYYU[ZWZ`^ch``d`ltkpurz~z~}vom`e^_\\Zg][UXW\\XTYPSXTRPPOOQNNNLMNNOOKLMKNLKHFGGEGEDDFHFHEIFFIHGFHGLKJLHJLJMLMNMNOOSNMMLOLLKKLLMMMKLILOMLKLMNPPPOQNSY[UTWX__fb\\[dluli_lfmtp{|`[[UXXUSSOUWTQNJKMMLKMMLKPONOOPNOUPONOTLLJIIJEEHHFEEGIIHHHGHIHGFDIIHHIHHLMMKMJLPNOMLNQNMNNPPNLMLOQKMR[WROPQSWTRTXZWWa_c`g`hunq|xneowodij^hb\\Z[XYPVTTYURQRXWRPUYSXXXWWV\\[XRV[XTMONLOMKILMIIIJKKJHGLJKLIMNNONMOONPNMOPRTOOMNLLLLKKJJLIKMLLKHIJKKKJKKIIMMNNNPMPQUXVX[Y^ac_hiea_hi^cghefvu|zlhrr|ojd`_Z[]XUXTPMNKHJFEGCAAECCDBHIDFFEIGFKJKNMMORUUVT[V[YSOUVUQOTTSNMNONMKLKJLKJHJKJJJIJHHIHHKIHMNMLNOTUVUY^^a[_k^]e`_em~xplebli^\\_l_][W[`Z\\Y[_YYUUXTYXT[OLKMMJJKGFHEFGEDDDFCEGHIHJLKKLNUOPWQY[]_kg^g^^^\\jkb^bkeb^_^a\\\\a\\]^^ke]^ZZ[X[ZVX\\X[\\]ba]dagjdrnp}w|{~uscjm]_ti_d_d_^[WOTZWSSWUVWW\\ZWXRWVY[]^\\^XVVYSOSUUNKLKKGEEGFEDFECFECDDABACCDDGFHHFJJOOOPW\\]YT[]][[[_bXaaicY[^YVV\\_\\XW[VZYVYZQUa\\[_\\\\ZWaa[`jbizrmjo}|xglmefh`X\\[\\`VWUOLPSWVTPTYWWTWXZ[_a[YUYYVVPMMLPONNHILJGGHIGCGGECAEHHHHIFGKLLHFKNNMKPUTTSRONNPU[SS\\UWWYVTVSZdY]`]aa\\odX[[_flhjhig_]\\]\\[ZZ[\\dg[^]Y]_k{rwo_d]^]VSQQOONMLLKKMLLKLIJOROOOMQRTY][]_\\^_^\\^YX\\YZXYTQUONNONLKLKKIIIIKHGHKIJLKKLLJJMLMONMNOKKMLKNNLLNOPOPWPQWWWX[Z^iden`hagkkpkskzwiuw_`ig`dagnglt{uotnuxxkd\\]_][WV^`Z[STWWWSTNMRSSQOPYXV[ZTOTRQNLNNMLMLKGJLLMKGILJNMMMJKMMJKIIMMKLOPNMQPNPNOPTTSNKMPRQMKKOLNPOOUTSYUQQYW]_Z[[`dfghfifmpb^^]ef[\\YX^aeaeih{npmgekkceb`b^`^][TTSRTOLKMMKKKLLJJLNMPPOQPOOPMLMLLNLJLMMMNLNPMMLMMLKHJKKMMLKMLNXURWTRUWSTRPOOQWWW\\[Zaga^a\\Z[[YSURORSVUROXZWb_^dy{zvxt__^dc[XY[Z_\\ZVSQVVRPPSPVVQUSOPTUVRRSTTTRTVQPNPKLPONKLKIILKJIFGHIHGFEFHKLJKNPQRNJMRSPSSLQWUZ\\WWYZ\\Y[_Y[hkjid[``\\YY\\Z[c\\]b\\Yl|iruoo~gnmwpxx}}{|]ime]^dWU]WRTOQUTROONNOONPMMKLRNNPQTZZ[STWPQOLKMRNLNKLPMMLMNHFJIKKJIGKNNNMJLMPMLMKKRSNMQYPTZUSYYVTXRSXY]`]ZW[b__k^Ybbcd]mghqv{pqpmtx|s~nk^ak_[WWZVYWQWTTZVUZWZWU[XZZW[Z\\][UUUTPNMLLLKLJJLJJJHDEGFHGGHGIIILMLKJMMNNLKLQSONOQVTRTSQRQQUTPQU[YYZVUX[[[WZ]^aakqljp{ptw{{|yt~tkqgh]UVVTVRMLNRTVSOSRVYZ]]ZWTVZWY[TUVOOPNNQNMLJKPRKJHGGHIHIKMMORUOOYWVUQPPMMNNNMOPOOOOTUUXVVVTTX\\cbWQU]^^af]^^alinqkqnieaa[YZZZ\\[ba_dY`f_di`][^jop|||vohjni_YU[XROLLJJHLLLNNTRRZ][\\V`mglc^emcc[WVWYUOMLNRONMJHJHHECDDDCGJJGHJLMLLKKOMLNNNONORRPVVV\\\\^ghwsvyx~zqx~yomfdceba]UVONNNOMKJIIIJHILKLMNMMMOPRTQVRSOOONMLNLKHJJHJHHIGHHEEEDDDFFGIJJKLLOLLKNNNQMOQSWWQZZZ[[ZV]]abhj^^d[\\__onlj|xx}t}ph~nyo`]\\cYRTSPMLNMLJKNLKJLMIILMLLJILMMIHIKKHHGGFHJJJJJKIIJKIJMRPOQTYUU[[WVQSY\\ZXPQVRTRQNLNRUPNONPPNLJKJNOOPTXTV_jbllltyuptmwvgmkkgZ_][`]]]`][^]YWYXSOOMJIJKIHFEDCDCCCCDEDEEFFHHHJMNNMRUTWX\\WY^\\\\WXZ\\XSVX_[WWWTTVVRRUUUVTRUXUZ\\ZZ[Z\\]bffeeflzltnkquyi_hb_Z[ZRWTTZXWY[]a^_\\XXYVVUNNMNONMIFHJJIFEFFGIGEGGFJHJLNPRTPSSOSRQVSNRPOUVROMOSQQPOPW[[[WV[a][WVY\\[][SX^^e\\]cdi^aef`^`bglzzzxwvnikmfjjbcjpre_ded_\\[YUXVROPONMMNKIHIKIIIHIIIJJIJMLNPPQQRSRSRQRQSWWTWTPTXYXUUUUXXVV\\\\^__b^_hjbie`fcmttoxxztxpjq{phkd`daYUZ\\\\^\\VVZZVOPPNNMNONMLLMKIHHIIFFEDEEEGEDDCEDDFIJLMMMNPQUXXYTPRUUZXV[[VWVUVUWWWYTPSXVUSRUTVXWWY]^]\\Z\\fnlijixtx~~{m|}llwslrzoojafj`Z[ZXYZYXVRQNOMJGIKIGDCCDEEFDBCCBBDECDDDGGGGGIKNMLNPSSRSQPTUTTUVVUTSRPPQRSTSQQRSWXWZ][Z\\\\`][YYZYY[[Z^deb]chpy|~|mrmkkc__^^^WXXUTRQNMNOLKIHHHIIIHHKGGIGJHHJJIKLMONTQSSRXUQVUSURQSTSQRPNQQQOPSQPSPMQNSVUYVZWSYZZ]X]a\\``[_ae_]^^c\\_fooloswwwm`^_\\_]^[[_h]^YSURVSONOMKJKLIIIGHJJJIIJJLLLJILLLNQPNOQROKKLKLMMONNPONLMMMKLOMOOQQNSVYWTWZZY[[a`c^]bZ[\\_c_]`e^X`bdebhdfnnu~v|ytxxqhhmmf_\\ZXTRNMLJJJHGGHHFDFFFEFGFGFHIIIKKMQPRSTQPPMNOPTQNNNQROQSUWZZ][Y]_b`bhhllult}~|}}vmqrtrw~~yzzlunpnbtfkvgg_`ckule`\\geej`\\]_XWZPVWSVOMMNNPNNJKLLOLKJHFHEFFBBBGJHEFEJOOOMNMQURPOMMLJLLOPRRQVWVZ[Y]YUYSZg]g^]mwvtm}}tyrskrtb`f_baeplrqi|}omsowtrnjjw|t~oppc^irdfg[[[XZXROOPNNMJJLNMMLJIHKHFEFGFHKKKLMOQPPOOPNPOMNKKOQOMLKKLNOMNNPSXUSTUZ[bc\\\\^fka^^_acjljigejb^]ZZ\\\\]`_`einmhr}ww}xwsrg`efemsl_akih]\\[]_]]ZYQURNNNRWWTOOSUWQNJIHIJKMLNNMMMOPOQQNTSMKLJLJKKIKHLLJKKJLKKKMRTYYWY_]khtwlzihofbbb^Z]Y__[^]bcoy|z|vwv~ywzrvvlgijphnm`jouvkjgfeg`[UY^`_]]_]cj_^[\\`\\^VNNOOQPLLNNNMMJKLMMKKKJJIIHEDDDDBADCCDHHGKMMOOPSU]ekdmdiokningikeb`^dca^XZ\\[[YUXWY]b_abdqtplzm}zzvwvnhe_]\\\\\\YY[[[_][Z[][[VSRPNPQRRSWWYXSUTQPOQPQPQQONKKKLKLLLLKKLNPTW\\[[^ckkr}zoigqbbhipjjmiefgfeahirxzrih____erged{volkgiinfh[^]]\\ZZYZSOMLJMLNNOPPSTTPMLNMMNNLLLLMMNONLONNMOPONMNQRONMNMLJJKLIJJLMMOMORTY[]c^aey{vyjusjeb]Y\\`acc_d^`cchqvrtplz}rkkdc^_\\YSNMKKJJKKILKJIJJHGGGFEHJIIKMNMMNOPNPUTTSYXX\\[UTWURTRSQMNOOOPPTUYXZZW[Z]]_`_[\\_^\\XWRQPROQRSTRQROSVSUX^^gv{}u{qljli^[Z[XQRPRPOURTTRRSOLLNMMNLLLLJLMMJLLMNNOTSWZZ[YRPQPSOQPNRNPQQTT[_ab_bfljljjzzjnh_VVUPOMNMLKMNPQORSTX]]^jnwspoalsyou}hb_]YZRPVX]`fa_`\\YVWTSTUPONNORSQNLLMMMLMPPNMMMSOMNPQPPTPPW[UQPSZ[]eulwwgc^iyzk_[^^\\Y]XRROPMMQRSUVVSPTY\\\\\\bbozo}tjkuusjjjg_]]__\\[[_^YXZZ[XYXRQTXTPRSQOLNONLMMJHIKMNMNONORQQONMLMMOSTSUY\\^`gj`dlpr|vifeaade`jkjsyqebhls}tpnxy~jhcflhjgkwmlpmo{tntlxu{vwn{mf_`ehe_^`^]]]^_`^defdknlplif`^`c^YXTTUQSOMLMLKIEEEEEDEEGGEEHHGHHGJJKMOPRVW\\bgutzzrohc_\\XUUVX[YZ\\[Y[Y]^XZY^`ipq}u}|r{qmkmvwtphjfilktxy~zvkheha^b]addmk_]YZYVWWXTQRSSWY[][^^agjhntnvtzuournhmumkmhf_^[ZXQLJKJGGGFEEFDCEEBCCCBDGGHJLLNQWXY_ghn~xvmh_a^bd]\\]ejmhkkklwsvswjnikogikaffgeekd^^^agjxpmnonic_[`[X_\\Y^d]\\fdhyyklfhokg_b[[^ZXXXUVUROONLLLNMKLLILMJJKKKLIHFJJKMLOQMQTRV]`^`dckmcdukmjej^YZYTRUURUUX\\^X\\__jqsm|svspknq}|jl_XZYTTZb[XZUZ]Z[[ZZ_b^_^\\]YVVTSYY[_^ZVSQSRPPQTUZ]^a]`c_ZYWVSSUUUUWWVTUUPOONOQRPPSSSSNLNOOLKKKKMRVXWX\\\\\\_dpwreab]^acjhhjigmnltnmhbflolmq{}wzz{xkc_hb^`_`b_YYZX[ZX[\\YVRQTRRWY[XZXTQOQSYZ[[YWZZ\\`agooj`[Z^`^boia^__VY^b`[TTVVQUUY]YWOMMLLLLMQUWZWT\\gcf~}wrlfnhaafmouy~{mig\\\\gmdc]YY[]\\WTXWPNNMKLMMKIMPRQMMONRQOPOQXWUTXZY\\b^]VU\\Z[^`bba^^\\[]_Z[_[YXWUQW_YXVQONOPLKLQRVVXYX`mpnu{vs~}kiinhhsgs{nhgpbYZZYWWXURRUWVXWUXWTSNNOSVSQQPPTVVUVXWVWZ[XX[a_][\\^bcca_\\]ownmd\\Y]c^[WUVRQMLKJNNNNPQVZXVTZdnqplpz}~ginyvpzn}wyqynmsiu|qjlh`Y[VT^YXUSPOQQVMLKNOPNLMLNPPMMMNOPVQTQWY\\dbmlyoi_alhigmrj_\\`]_``ZV[[VQVWYTXWUQNVW[V[^airo[ecpkfhe`\\f^`_^egmk|zrjys~kegfjnozij}~nu|m^`kjjda__\\ZVUQMOMOPQOTVOQRTPSQOOPQPQPY]^ZX]^`\\[YY\\YXZVSTRTRUXZXVWTWUTWVXXW\\\\Z^]]`dhsovusxoih_lpqw{qpyrnd_bcjpy}~~nsrx|gd`XX\\\\]\\WUXTOQUVTUVXXSTVWYX[\\Z]YZ][Z]]]\\]^[`][YTSOTVUQQNKKKKKMNNNOLKKNOPPMQVUUWZ[]l|}xmahlkhdkjlmljiow{|zy~nfe_X[YTV^b]X[][]myvnd_`^TPQNMLKLLKKKIGFEGJMNOPOQSWX\\_]]^][^^dfjy{nhhknlfeb^eb\\YZZYZZSMPONNMLMONKLNLNRUROQVY^f`jpqwknompiunidb___hmmuyx~}uxw|d^be]\\YWRQPNLOQMMNNPSSSWY[]d`\\^ZZ]ZYYY\\bcjgd`]]\\]\\YWVT[\\ZXSVUXROONNNNMNPX[^^ahjkl}{lj}ztoty~{lbcs{|wup}z|rfg`][WWT][]\\UQNQPQWOORS_\\`\\TXYa^[]WT^]VWVUX]]WQOOZ^\\UNNOORSOMNOOQLMPQWflakikrqzziiygkkhfimkhbtwyonv_`moluqzyyqy}~nc}}sxf^WTVXZZWUZ]\\ZWZ\\]d^ZY]nzxnx}n_ZZ_djlg_XUURONOMLLKMKKMMKLMLMMNNMQW`inwmeb^\\[_^XTW\\Z]\\`dktp|q|~q|}wngmsv`eqlggba[^d]^]amlvxpokif``_junwnedno{xoktvzsgmpmsqeeqx}xtzrdYXXUUSNLKHEHGEFEDFGFCAAFIHHIKKMNSTW_eopnjiga`]ZTSRWWYY[^]a]eljln|mf__i^X]a_agymj]Z^a^]ZWXUOUVZ\\UUX]\\g}ukd_acah^_`d`ce\\__ji`\\YXSOOMORNRPVVXU^ki|~{ng]ZXRUNNJJLHHIGDEDEGEBDEIHJLIKMPPSZmnx|~koecdb]e`a\\cffieq`ehfgkgcbgf\\UV\\ej[dghltkmlmzyeZ`_WVSNOUVVUUWX\\akhe}nqnifmnkf_a[fvzm|xuqe^[[YTQQQTTTVQV[Y^\\]aey|qqnnj\\UVXYUOMMMKKJFGFGGEA?@@DCDA@EFGHKPV_chljvtpgZ[\\^_^]^gf_^\\Y\\k|poqg]ded_^\\[\\hjcv{~lefaZ^WTSNOONMLOMJJIKLMNSUZ`gfbhtlabdhna[al_aed_\\[Z]a_a_ZPOMLKNNMLNOPQOTVZ[^gyy}eejdd^^d^cjkf^W^\\eam~nphnxxkhu}p]amr{y~pf^_^\\Z^^hmcYXSSRQOLNS[`\\bcjysd__cfh`\\WVTQPPOOSZ^\\aZVY]ZW\\SPPSUVQPSOSX^dcjfbhgq{qx~lekqidie`fa^_^]be[]irjt|ql~yvtkmiolkokfkjnxtri^Y]`dg`X\\^\\\\XXWXY^_bggt{v|~ph_[\\XVTUQPNNOMNLMMNPPNMNQQNMNNMMMLOU\\dahlrpkqsqnrlpsp~oekrs}mdfukhuosl^YTTV[WTVZbiibhhga`^^dfsun{|~rknjr|tsjxvwk~{{|o_[VQOONLIFGGGCABADFHGFHIKKKMMNPRQSRW[fprrq{me^_chfaa^_\\]Z]hn}~voqyhc`^UMLLKKJGHGGHKLPSROTXZ]^dkyuaa_]\\Z_`c``ee^^kngfosls|r~znq~m`ZSOLHHFEEE@>>>>>@CCCGHJJIJLNPRORW^ek|znkhc_]]_bfrigegacf``eir{sqppm]ZVUQMNLJJLNNOPRSTWWWZY[^b_`gll|mwquxuikhhitljkm{uomz~uyxl``]_XONKIGGEEFGGIIJLLMLKLORRUWZ]^fkrxyxth]\\`^_ee_`hd_afghb^_`bfeigballjnstjcbd_[NLMJKMONNRSUWRPRTUWYZW[]^qtnlh_[[UQPUTUVTUWVXZY^[\\\\`lkmkwzxa\\ZYUONNLIHKKKKKKLLLLKJJKJJJJJKKLOPRVZ[\\`du~qlb^`][XWRPPQQOSUPORUUVZ]aehjhmsvwc\\Z\\]^^^\\^e`e^ZUVX]][^[^_hpsbd][ZXWY]\\\\\\\\]^[`ldtmq~qxxppgfj^[UPPNTTSTY[\\YYSRTQSRQNNPRRVTWYZ_hocql{b`[XXUPRPQUV[TZUZWZ[Z^`ffijylsv{gilxmm_aY\\[ZY\\gi|hc`c_jb\\[UUYWX\\\\cemijwwmktc^[[XZ[_YWSXZ[a^]Xaagceacelrmmi}h\\]X[U[XWVUNLLNUPUTUPSSPTPSRWRPNNNPUY^^ab__adu{mgic`]\\ZZZVVRVQTZX]\\ceklhtlnqqqoj``^_^``^agszy{txyws{ya]_]YXXVPNQOPSSWYYVWUUWWZZTPUXYZZ^jlfljf\\ZXXYVVXVRWVX\\Y_hm||plmd_]ZYYZYVTVUUSSWWUSST[iu||pd_\\YYSSRQVUWSTUXX]YY\\]en{mnjjozpldddnt|wwooidbhb`c^bb\\]_^bpufdec]XOILPTVPLLPVWROLLORSOJKMV^_\\Z]cnkh^QSV][[TNP\\dd_\\_onfnwcXRSY\\WOKMNUWSOKLPVXVV\\dnw{m^jsgbe`a]VTUZfibYVZ_\\cdWPPY^ZTPW]hlh_\\\\bed``[^oufbihxv~x~iejnrozoluz}sl_`c\\_ZVRVY\\[\\^b[]][[[Z\\ZZY\\ZZepnrpleb_]WUTXXSRMKLMPRSRTRW[\\ZVY[[VWWUXZ\\\\[[[Z\\a^]]ck{y{rna[[YWVZVVTVWYabyzmnjoknjjpjgjqpr{}ld\\YXY[YVSUVTSSTY\\addltsu|{z~mniily{u}qtjd\\[VPQPONKJLLNXVQQRUT[YUY[]ZZ_muuonfg_cdea_\\YUUX\\]^`dvvnlft{tnep|ne^]^bpqcfgqrmgkb^uuyz{yoozpnjehd][WTNKJKKONMLIHHGFEDDDHGHGILOUT\\_jo}tj_ZUYWXZXSQONLIFEEDDDDABCEGGIIKPRU]ivyhh_c]YWVROOMKHFFECCBCACDEEEGKPORZ]syvw}|y}uj~vle`[]YNLMJKHFA==<==>>@BBBDGHKKKMOV]dhihhgikn{syllzgd]e]fjfg__]`^^efkzrle`VTTQJGECB@ACA?@CBDHJLPU[_jyrnhgemhnjj~rxwnha^_\\\\[VMMMJHC@@A@@?@>>>>>@DEIMTQRU[flhhm{|{mrgc_fg]\\\\X\\\\_`abknklouyoka]\\YYTOMJFCB@?>====<<;<=>@CHKOSVZew|}od__[UWWYZ\\^aa]__iknt~kibaXUNJHFGEDB@>>>=<=>=@EEFGJKOR[`lpmw}~xzp}rbVURSPNLKLKOSQPQY[`lj\\[lod`^[b\\WOLMKNLJECCEECEC@BEHKGGILUZ`^`]c~k]]qlggrvmb]jn|xd_h|wvqn^cmn`^UVXUNMIJKMOKKHHKKLJJIJKLNMQS^]\\[[_dhdnigfda_hhua\\]]_\\][_bjljiebd]^\\\\^W[XSTURTNQQNNKKLLMOMNKMQPTW``_cf^h`lqj~wycicfniib^_\\\\c^ikqulsokt~wnongeecb^VW\\WUURPSUVOLKIGIIHGFEDEDBDCDGKMNTZ\\h~vnxywofYVV\\WRPQPTVYYWZZ^_\\\\[VYYZXT]`homjllhkmkmilvjonhc^\\_gf`go~~nhgfaeg__dfq~~rqlkk|jkefd\\[VZPNLLMMOOMNOMSTNMMMONQTPU[b]Z\\ZYUV^[Ybadjmc]]USUVUX[cymp|yuwjpzp}nfk[YYWTQRQVVWVWUWYVSRUUPRVQTUVWY[]_]ZX[__agtm~mljhefo{|{na]\\WPNLIC@A@@>>>>>@AABBEFGILNNR\\`guxwti\\\\_c^\\[[YXX]\\[_ftl]UQKKJIHEDCBAA?>>>>?@ADECFHHJJLMLMNQX[fmp{z{wphge]^VY`b^]^[[X\\\\Z[]ep}i^ZWVPMLHDDAA?>=;==<<===?@CDHIIKNQS_foibYSNMMNMLJIGFHGGFFJMTX]lĿ|_[ZVPMIHB>=<>=;;;;<<<===?>=???FHMPRZ`kmojÿm]^VQOLKKLKLLIIJMTTY\\^f{macjlc_TPNKKEC@?@@>>?@??B?>=>==@BDHILMPY[]aylnmma[\\]]^\\WSRSQUSTT[hedfrka`]XSSPLKLKIHGEDDCCA?BCCDFGIHGJLQRUX^_ddgin|ib`\\Z\\Z[^encmxpaZUQQTQPOLLMLMKJJIIFFGHHJKJIJJJKLNPSV[cf\\\\\\^ainovdnlil`]\\Z[[ZXYaztkd[WUSONMLNLLKNKJJLMLJILLMNOPNNNMOPNOPTW[[]XZW]b[hrwup`hoyvuxfsid]Z^TTOV[YYXZ[TTQNOMOUNTPLPLMOMMNJNSUZRUPPQWTROQTV^[cq|s|~ygY[WUOLNPMLIGJKLJHIKJJIJIIIFGHJNKLNMTTQTOVYV_[]ebr`gfXYOMOS\\[_hb^em~zyjhmkkjcnyyoi\\XZXRPLKKKJIGD@@@????>?@@ADGIKNRU\\mja\\TOQNNNNMMPQRRSU\\]ckyxw}{ukrvkj_]XTRMMLMMKHDDFEEFCDCCACFFCEKNOZgq|mh^RMPSRYZYZZ^[ee^hfcz~szmf^khk}ug^[URNE?>;:976653465577:<@EENT[o¿w[YOPLFD@?@>?=>??EIKRQVbxy^_fZZTKFED@<=;:;:9:;98::;<>ADLPR]hÿ]UNHGGGED@@DBA@FJLMRR_gknrj`]TPQMIB=<;;965357555579;?FGJO[shUMGCCB@=<>;9988:;;;?CEGKTdmq^\\ZRKDA>=;9788765566667;<<?CIMNXb{¿o`WNJHDC@?=<==<=@ACGKPVZkwy{u~j]UVQKGDCB?><<<<::;;<=@DHHKOV\\n}yn^ZRTPOOMKJLLIIJKKMV[f`fkj}sjpi_]bi``bpkw|~pg[\\^\\ULKJEBBEEAC??BA@BEGLQW[ei{zzya]]W[]^VXgjkeeg`a^[[ROPQUSPX]hmsmhjb`ZYWYZWSRPOPOMKIIJKMLJJIHLNNMW`\\gijsuszwk__Y\\\\]\\[_`]__joc`WUWPSQOQRZ\\Wc_c]ZaZWQPSXTPUTTWb_ac_]Y\\]XXY]\\^aZ^ZY\\^`^hqj`UOIGC@@ADDGGIJNQKKLTSSQPWPVW`bbqglhth^eah`g_bdb`dn~~pyrrryq}odYUNNKLKHGIJIKIIHKIJNIKJKIIKLLQV[^\\ZY_caz~}z|{immq}}p_XQLLLJIHEHGGHIIHIKMMMJIKJNTZVZZ[VQMLKGDFGEBEFHLNNPU^clynf_Z[UTXRQNUUTYWXTPNLHHJLOPRURQY\\aa^[[kmljf\\bbekwtt~lw^\\VV[VYVVTWX[]cc^nvmoslbkcd_[_hvf^VXVQSS^[VS[_`_WTLKHHHGGGLLPNSOTXhe]hfr_npr]b\\ZSWTRTQX```[]x|vv~]Z^c\\ZTPLJMPNONOONNNLLNVfSNOPLMNLMVV`lklxrqv|zhepk~ptkpy~k]UYZ`ddwx|{vudWTSPQOQVSRUVVSPSSPOPONQSVWYRSSNQNKLKKKJJJKKNNNT`_iialkm{xszwne__^h}zsdmd\\UTNLNKNKHJJIIGHEEEDHIHMPSTQSSXbf}~~vptd\\XS[eb^Z]^]bk^fwopnor|xvye^]__`ZVTV][RPSOMKFFKLMNNJJOJGIKNTOSYYROT^~neWOZVNKEGNMVYZcutjaY\\_^[[[c_a^]|~piZZ_SSQILONLKEHGBB??CFHFEHKLKJMZVPVXcm~ZYWNJEIGKLMMWXWY[g[`YYXie[Yixr}p{pnk^b]\\QMOTSVQJMVVWWRX_jjeZXOQRW[WWUU]TUPMORWb]`h¿r^SLGB?AACABDLQ[ajopjbhf\\WYVRX\\\\_h|unvk~n^[SVVPSQKJJKMLNPRUUZ^ROUPMNOQSXd]YZ\\_ei~_YSICCA@BCAADJN[mx{i\\jhcgvl\\crpruadzjc]XWUUUNKMMONKIHMMMPPKNVYTVTPT[^__hqZRTQNFFIHHFJLS_ejkq|{ptl\\\\X[WVXV[W\\]Y[b]ZVSOKLJIGFGHFGIKMNY[[fkhpqx|o|~½hPKIHHFDFDBELT^lylkmc^[OMNUSNMKNIIJNTPKGGEGGEADHFGFLOMRWTYfjkmluadeĿÿc[\\QOKGFDJHHQYYe|k_[ZVOSOLOMJMNMPPPMKMGEFDFHHLJJHBAACFHFJHIKMSW\\em}|\\SMLJD@;;=>AEIMOV]\\]\\ZSVXY`bawf\\VONPMMMNPLLORX]^^RROIFEIHHLMOSOQSV_gsz}ozhn`elgiZY[ak¿o`QIGAA>=<<;=>?EJLOUXUWNMRLMPPOMKC@?=>>>>@B@?FFFLKTOMMCGHMOUnwxlbilsi\\SMHLFIFFEFOUXV^\\UZRNKIFHMLTVSKNLCE??>=<==;>?FCGOQUNNLMOQ[[idocesimlk¿h^OLKIGABEHKPS\\gi[PQNME@BB@?=<987899:;<;::<=?CCD@?@C@BIUW_~mn\\SPPQIGFJNKHLVlmvyl_URWTTQPGC?<=;977754445:=>@@BDKMNSU]yþucn`f_ROOU][OU]_\\a\\SJDBEHGC?@@=<<954355333459;CD@>DJHKJKMNNdshft½¾q`TV]YNBEC?<???=;AHLNdtsY^phRIIHJDFFG>??><998:89996:;?CDKIHFNMLIORW[irgZYXSLJDB>>@@>>@GGIW_jPPVULDA@=<>@>=;;;;:::877999;=>BIRWNROSPXefi_fÿwphm^XQKEEEF?9;=;9:9:<>BJOOMMMKGEBBDCCEFC???<998854447:;=CHP[]_VRNR_c^^}¿aSQMKPLID?<@B??<=;;=DDDFUthdf[TPMPJJA?FH@=;775573003577<>?BCIH>>B>?AIUYk^FDB=;:<;87974256344559;@BEUjlwhZLVSGEEHC@?=989=96785479::>EGGINMKL[T[xſ\\QKD>=<<866445320.123358:=AJKWW^TMVPLFIHIEPVFEDD=<=B;:<:<;?DJQjtwbgn__n^UUUsmaZME?:9857656466334347;;:?DFJMX_S_weemd]SH?953/./.-,,./14599;?>AEGKS_YE:741/.---././1344343577:;<>DOMOWda_k]Ze~hXY\\SQNG?<9:40.--,./136:=?JKNYnhb|ǿYF@=60.,,++-..//--/1212667?IKNQONSVMIGJSWWZSLHE=<984132147;?BDEINLLLHIQT|ſYJB:5320/.-,,-.,,,+*-/07:=BJTYSJKKHDFEKZ\\`pil^IIE<<<:985667::79;;>@CIT_kž`K@951.-))*****,,,--../26<DLWZUUPKKLHE???AA>=;=;;<:8668;:<?FMRRW[_ktnwbND@@920.,++*)(),-,,-./136;@DGHFDBBD@><=BBHHHHLC@?=?>>>=;<@DFLTV][H@>:973.---+*))'&'&&')+.037;ALKCCIGGJ@:9;=>=>BDDIF?FINPU\\]aje[_bT[ZOMPw~es{»\\SPMMD=:740-*('''''),-24:?DLXUOPUSMHBCDILFCIMHEB?=AFECEJDBKMOQ_yu[Ľ½VH>>;9977410.+*+,--2159:DCCDGKLNRi^ts^YQNLUKA=;:88887;>ABCGMTWb~fnl]QIDA@@>>:3022/--,,+,+)*,..49<=AGBCGPOYnh\\guWPRC?CA>?@F>>GKYp`kjWH@;65312/,***)')++.2435:>==FFTYZdMKTL@INDHHD?87:86BE?JZbqdZúZ?<;74567676226:78;<?@89;<GB>?HPJA>>@E@;=?EG>9752665;@>FOVjnǾ_hp]_NB@?EEKH??A>;949>B?@@CG?=;8=@<BKKD=A?9::35741367<AOU^~¿ƿh~m`eq_`[QQJFJKC=???AFGCIU_SKT\\SG=@BGB:9<?><66:<?<;??@@<;<?BIFSfXʾxjflwѿþiXabsgLNF=>LIHMV]PPK?BKHDFKLIJD?<<;7::556;@>=?@IF><;A?<FRMTWVTU\\gt;Ľ¿qž`SPs{cȿg^F?EAGJOPhp]MPLJMLF@==:>;67<=:>AHIRF>DNG=?;6;<=CJVMYVS\\SSVYpf\\|ȶƿþk{_KIFD@DLGNH?<:96<=?FKRGOKLXJLA<:935ECDIOPNI<>@98?@?FJGV{ļuiۼ˼ǽZVL:;=9=CJB:8328?HRhiUP??>?QKMEGE:;=;BOLILSADPDKpZS]\\EAADKXr}ٿpkĿӿZZ{pCAC9;FABCF=9;:>?>CJGDE>FZplfdYWnTK>?D=633446;ES\\RKHC@CMyZV\\z¾û^QIHSyj^@>;8AJCDHC?B??ISZb[HKEJ_KKGTI<E@GLD>>>99;>@A@?D>?WiyhVYQG@D[WǻrzĿ̼üPcYleYKFMS\\SJB?@DDDXNIB4346=OgppZ[NLAY^~GHM>ALRKI=5:523334<>D_di{aʻſÿ`ŴbB<>>MM[UE:0+1227<@>?:?IJLKL`fй»YX[HVOH@>HLUVH;952.**-67>SlbQI?<:@LNӺɽƾPFDKR==BG?:86<;7;FNS=8:9889=Mnƻ{AA?TľkSEF@\\nY[d{\\626868;E[D=CK>98NsRV[Ƕ]¶`X\\OV;jbO=<LaP;25>65;FkI3.25;GPͼ^XOJGe¾YRTWP?925??>BDPzF28LyǷlmX̼k[¿fǿŽS?GDLCB\\cF8O]MG>QP60>>?RY|U]ZJJH[K=YƿeMXNMeO>1-+)*3ȻķaBNU^\\<``73'#/4;UҼHQLnOֺP?iM軱¾fqkS׹½Uv?>D=1:QRL[?5MVeLel2*<9774/-3574vI}78\\=C@><<HXںU73?E2/BP?9T>5D=7/)&\"\"(.35E4+&'$\u001d\u001e%,,.66/4H<44CG;>][<:IK?8=m״OXqɾļ^@.-:D51CxF2S<.01,\"#,<<B^@@WOcȹȽpN7BC62ܹPK<,# $,2?~:?i9.=Uʰ˾_kc9197-'00#\u001d $&)1;0**&#\"',(#',43>nkFݻxƽҽж=;2+&\"$'$'1SȶlڿKeF>rR67CC34Gd@9F=JB27??E;@cɵ³Ͻ9=WkCWݾǼf>7<I:6A9)&*,\"\u001f!\u001f\u001e\u001f#%&/:0($&*').,++,208RH38LZAOƻֽY;>:y_M\\LZɾiOTE9;=?>JBSr}źz46@CC[bLEV9=JB06VWCY@1130;AXI=XC;BAD9=IHϽͼ¹gGM>Y]^<.5;4+3=9G¸>;MY귲zI>=I;4FT86K̽ξA3.287OϺppԿpȻ[9<B=>EA9+'$$&('&&/699?G=.5DLF<<;14DRJMLUFFVNTMDC>88=CNj~E65OǿgQyN7121-)+*((3<657?B;CovF@MFKr}]Ϸ˰TD0,6EONugGAI?7232-.5307@G>;BNFCHYkWZoI?d[UikV@UBJj>9=5..8968=;7<liNe`MBZķ{i=336:Wƾ_o8(&(&)/.()25/+,,)),=K¹͹ŻĸS^O?DQdODKE<Ec\\ZsͿ¾`_H3099/2@ND>L]núñdT[UH?;:5/17<PNZX>=DGGMcsVbaG9<KSNbE@>7312610/0/00,,/E^iYԽrd¿QIRA:996239PjYC83/07FINj[hF76;>9379;IeXhE58=?COQKI[ɽhĿmC;?>:=LR@<<PýNUZ\\fƾn[]mźþuM?=<62:@QcxXF@IWb^jd]T:66,-8RWH?>ADC><587<<.++133@NCEziOA=B755?BUǺ;ŽоG>JGJ\\OQBMeAQZFD?5-*5TQD9?B96<9*+32-,@kvȲS[ݻ¹͹̾¼yɽLTHGFMǵ_eT?7>ɰȼqVwpJA`rb齼WbWI?3/;}W\\QB@GiUWNMQST޿_@ANNGRL88<>:K^6..8>>3-+-6:B1)0=326=GaHGgMWY\\[MBB]dU_ǼeKt<<O\\YAFG<>UIƺaBDjhM`H31<HUW?JuXH^ʽRNTUQ]D?NݿķκļcK]˹p_\\rƸgW>?=[B9U|hdKDLiɿWOaX?6]DRoWM=.;OI?ON?BJHCAHWUOq_<1<X=@DVSVaJNڿjKAANO9ITKgb\\]ZJNF>AE?DCDQ>59=<8975;kdXlĽsjȼ˽GMaWzN=<CQZRljC=A?IrZŻƺ|ɾʾZ}W931AXhٻùȻrV<>MepSN<;WQRg[A8>G@>=?NH=?7AC;7;;JK:./?lV^οĸx]ؿ`c_aUdO>CK=79JhLBEX>+'.3567AczYA=>O^N>Oi~L<AILNp\\IEIMMZW>07FMC<AO|JHXwXLVƽ|Ž˺ľ_^ξaN{ZY\\ZWkg\\ĻmC]̺½]]eZMKHH@5-.58634;FNR=439=?DJPheRRjtkjft[JGGFLOJR^jU>9=94403=NKV\\NMWżjuVFEOXe\\_K758:<<6<JiI::>;;CGDMiLNRC;><8:D^VXJHEC@L[mhMXžʿd@<EYgWPjXNRRrvżʼuqmY`b><FNWl^_k|wjż½lMLZIMTifzG?KWOLHDHIMXL???;76304<CE>ERQU[THI[iI703;>LarHCQZf[Yfl^jv]\\T@<BSbN<7:;>B@<=CH>77;=>=<;FbbRNMKJR]kown`W_ca]hbnk]PPROKM]mRF?EMLmLBDO_y\\V\\SVþVPYl\\EB<88878;BGGIJCAGKE>DZ{NJKINKFDNLYTNUMK??=E=CJEOCMn^HHCMHLB=BBKDK?=>;:357CLRʾpqroGJM\\{SGD=GjRG>I]fSNNSH=E_wjpqĵƽyqֹ]sƴyI5006>RykaoZJPۼWL^hXpнUKLVLC@Ddwb]LUúÿVIWjWNE@Nhn<58FH;3..9H@95?[P?205<?4*+5DdaZvj?8?I7.,+3JF=QӿI>@dL<CO;F`XL׾gϾtҽöuE<?yWGkMYVANżUe^H?@󿼽̼ɼjĴǿ|aPX˾n@98B_j\\JAGOWnpZʾN<44;?FceC8781-,16>R^MOSUT\\SB<BAFFHR\\TDHB6-*'+.,...1578>LҾXB>Jʼcƾh[NE@]Z\\G<7<B@>J]\\G@NRNIsſxC2./17;K_nuɼsjcRYo[\\f^dĻOWJ>:<DHFIE=CQZ\\S\\NIBB?97?MS]L=<=C?725;>JgwNB87857:FMME</+++*,3=@J]YKUmſ`{\\IB>?=<@TʽK==C?=@HNmaFQbE:9@LPbp}U^M_tk\\IJ[`JDLKB>>>65EKBCjƿļjIDZ}ƹpTM@:AZ]V^NNJ:3;>86;IZ^ZNEFOL;7=BDBGKC@LL>688846635>B=>FNE<<=;9K^s¸Ŀ`LKQD74787<J\\NVSJRi`\\]PGL^]I?ANLFC><?HUUfWnVBBGGEB@>=IRF::AHQikWWmnüĻʿпROPOVmXKCDNm`OPcwgf]rZPPI?B><@H@6.--,+,../452/4<?CECABJRG>Iyƾ\\DCA<9:CPuS?8>JC=>DKTSC747640049>FJB=>DFA@BK]QGNYSKBC@==:669ALG@@FhǼȿͿg`beMFC@?ENLHB:3:A;?CC=AU[D:??LS\\y]pɼežYPaH?P^N<CjE9<=::FSmvJ>NIIUksvľ¹ƹcUhsPu[IbPG@TK67EA?BGEA>516:=>:>dZa^MB9?<<UkYGWNEAZdNMNSNH6/:8>>;89;LFrVϻüDNus`ַVBKMMXv~Z>9;@W>6QX==OD=Fu\\˸m\\ѺfR;=Q~>7TZKCUh}K;F`dpMMVXGLy}ҼyGJB<^i^O>D8B@?>79nKIC??>>>;:0KC^N=Ba\\]dQB<9C7=JYW̾S߾ſRn˸ԿɽLHõd?SIXdnONL=;BFFKA:<SU?ʾKOR=JKBA\\\\ALS˾rJV[ҽUZUJ7K˼ȻE=OKK˻E98=C;JYAARA[Lb@;WoɹrB=N[^ݾYTGITXS[_faLH=2EGJ];45>JIFK92=PBBmD_VIX`rvXϾfbO?CTW>QhI=Cb\\CBOG?>YLOT?UeJ;<NOfZ^sWW}E=gʿȽR>Sd]\\~|^]iftUMOpNV^jp\\S[Vp_JCEdig`u]XULM[gmnznNOkhZYad]LFJOQ`fkYXKKBCNn~UcYMLM[VUR\\OFDTsRNLKKGIT^d¿\\keWOMNNOMEBAHFEMNIRfTTUgxRKLOpbNLOd[RZkj^]ZZl[þtdl[WRG><Ih~SLLIVeQb\\Nľ]j^LG\\ojfWfTxf~cNTQY_VOQlxsaLKLss]mbX^]^cZ\\R]l__V_ndIDOPB=KsqeZljnOX_`fbaL@>AilQKEH[^MJOMU[WmtpaWJCDP[np`S^xck[sϿd[cOWhkcZVWtH;8:=KX`ZOOGJMTZWOHW`ejLB??q]eyUmphTghv\\MCYwU\\bcQ^kv]RWX{gRJLPnaSFFSX_dOGNePOU^_NGLUiriYeeY[E>BU}]xS?9CeWY_PJ=CVpWN\\\\|kjk{LJJfpLDAKPPNC=GgYABKn]g̿QNraD52;IRMC?ZOLeWhW[|[QWTe|SZkǻ[rq\\o̾TfʼnX?;97/,,-/5;?Hhɼ`^keP@BRQEI_}uYon_On[I`ʽpZnE874.(%%*2;=;=^˿dMN}hF<EaIUaA=KJ<>WSY\\rѿH?MYSŽM=AL?.$\"%+1642<iſ\\YXUNlm^IMnYKOۿx˾Ż_kTJL~iLBF]`PC<1)%\"!#(-3<H\\WUhw^ƿWFHý¼G<;EG:229HJ8/1;KIB;:7.%\u001f\u001f #),/8Igih\\RkJBJ`mMLdɽzS`w[ĻºļbVh^B;=EXP<58@NTJA<6-(&%&,..4=P^Z}XXSUPa~peUbfRkilO~¾¼ZXSVK@725BJA;74/)# \u001f!'+-0:HIIU`TJGHL^gOT^_i]aȸWKMNNL?;8<>6.08;7222-'\u001f\u001d\u001d\u001e!#$(.9=DIOIK\\ƺ\\KOaj[QV^RLhȺK=@JMIG:6AKB739E?>A9.*('&')+,/:HDFA@FKKG?@T[M~]~]Ž}MFF?>:0.4==5238422,')++++,.07G^JBGJWUD<9:EMLSkn___l|oxпVC=;>>7/1241-.3310,)**)(),-.6>E<=>BH?:623>EEOXZSOLKOĺŹfH>@Q[LBJNB537<96751.+'%'*,,.5;99;AA>746=NKFM_noɽú}\\UX~bRdfNB?EH>;:974-*''(('*0668:;>?;87;HIGN]{_cxʿ¿ɾǼxodwnTRZG>;:96.)))'%#&,26855:<9638GOJHGB@DEK[ƿĿOJRbcgxɼYD?FKK9/-.-+))069<:;=B@>=D]vp^TKKUUZ[̿Z}¾÷ƾ~J<9:83,+18=B<:@YUJAFZ`YOKKGGUiiSZav[IGQ_[L<35<HJJJYľƻ]WiI_^<10=@HF70;ZK>54;CCA>0-7F;26=D>H@7=>J>59?KVT@::OgTPԼǺܾĽľڻ¿twC;@JPJB?SicK?CLgrJ;38MF<45?HG998:JB?>:?cs?8<HFKW\\WNMǼjZlWNTGL]LO@BSCCAA=..>7/4:9::3-0;86=325CZE868\\B@PüOCDM>FC<::>?92.-19=88>97;7-14<<:>4=mS@109IM8=Hlpg_ܹºƻƷb[?MCHABC:/*4507:775..1/4?7;?>EK]wB67DO\\{N=>Lce黴Ļ»αھPT?=N^@BN<.-8833;:850//44JF9DLVQ>02HI?PH8>SIatv}QʿĳžʷĿhJ_kIDYeNLOG636;;9<;512>828GgFJQP`E73=AJPK>DL[aKLYMXQxh˾BʹøºŽQHAiKHHD?9018>EE725==08C>NT`KIS]JB@>>K[xl^N]SXBP̾kȼ̻Ǿ[vNϿ|TKF@:/1@GOI===:6288?ZNFSMOHFZMBVWagOIPSG=>UTAUKIaWT_ET½ȿcPZcdPLVM?58J^UH>>=:83038DH>>CA?@?;;HSWpjND?FG==ENOLJFKLOKJFUȾgfSA9?QmPFB?@9316@NPYJELMJF=CU}_RVYM@>FPX^NDMSV\\OUǽ¼˾K>=I\\[]FDID8536AJRYC@HKBA=DIaJSd\\M<>GMSZ=7BLPMKYqúȹÿȿQBAJ^rTPCAE>3546<?HK@<=@<<;=BhKANkTK>>I]f\\<8@LMHKWøh^JFXPGIRK>CADO^YsTDEPHGDDOWNZmWLIKjuJEKULJDOg]gνüþj^lQVXKCGDEVk_nRDBJHI?>LqF?K^MG>AdaJ<?CAAFCN|\\r׺[P\\dWKHCN|`Z\\NLTFFXg]\\FCINNTDA{HCT_KALgE9;BA?KJTiV]\\bd_[rɹWO|m~mniMK^hpXA=AHLODFaB@SlWIEQ`@:;?ACKN{cTY`οfȼ^@>DF@>DRoqdLFER^aSB<EO\\UOYH=<H^]JHeeGHCDC@FNbeJCAK`s[`\\LOµž|<67==:>LkŻO\\lLEDEMNC;:E]l\\lA;;<B>;?PflI?BB==?FTo_[LC@>GcUDFWƶ]=53./;K_ѾnpoRB=CKYWf^LIQLFAKSRD98<ALS¾cRA;=L_MNRUTNgƸI7./36B𿸶sLFWZ[MXmG@NdyH;:9:AGMǿ_NB7158:=B@?>?>;@JMNNhп[8.128PfGCQQLEOveVYazIMgkP;23548;>[\\PLG91208?@??=><=FXW[~ƹc<:?>SŷƼUNouZ[wbQdȿUrK<<<9=@BhiQONB74649?=<DGE?=G_ylX}˼ünD>BBeźƿmX@=BFGD>Eh?;:96/../580/153//26=I[mfbQYǼaE=>aUU[˼Ľ̿uJ858>D=5>d|F;77960-,/970136539<=ET^UOfmϻkIEE?GθƽǾӿU:7;GLJDXWA:7893016:3-.27;AGIMXtϼ]fs_}ȻejteYPLShƺP==ITB96<II;6118;3127<:5535=MUq˾YMR{YIONUTWLD=>S|ofOZοH9=NUFA>>B@;;89DKDEFE?<6555>MZ¶[QPh^J??LYMOlmrZJ@HebkA8>KLGJFBGMD@=CWY]w^PLC>:;DMWwq¿tMENLHDD[ZHCKS^`lVʾP;4:>@>?=>GLGHKȿ[QGMMPZQUjWhbkuIEE?<<E`aMA<<=<>DB84:DNPPjHI^i^[]NQjlTRYjRNOMHJOWF=AKPVPORzķ]VOD>@LeԿ`KKLMNU[O@>ENV^eȾ]OSbȽnZMQUOThkG99?GDCEJiɾǾUJIKO}I<<==CKOJ>=H[mƾȿÿTQcyXO^pZI;:<<:;98DnȾgclOH=4/.-.;UVIJdоVRiXOǾ{ֻPGIIMD?8LvZ?46?;986=FS8,('*3=:<?f¾^gqUXVʾŸfsVb_DJGMD<:8<??DMiݿ˺T=9E9/46:@RerܸO@<LeTU`[IJzZNXrS>17>?FINDnϾ9**.0./3@r\\TdzPFwmTALNGX=925>6.8ecG?SXcϼc@2)$().;BTʼɽͽ~eƻ^OE\\U;BOڽM99B<249=@?=GCOIIY꽬OE+)*+6El_ͼµTGXZ[պ~TJJaoH]iLJD20./9>@:;D:>aMP;354:BC<<mʻl͵dwb^St˽nƺPGPNgdJJ<H@0=FVY<5:;;JoMTR?>C<4.)).9?>=?L_`{įcVNGgʻxdBB>MPDANYD507\\]MCMݿJIM>4+**158<;7@\\ʷdV~\\d¹O<DLlN><8KW^dKDGAM^ŽTLeZ>786.*)-17GALd̿e^OGB\\vͶ{NKW\\I<=>HRG<@|¿bPIP]A;433/*$ $+.24?okMCC^hMIPo`SNTq׿ʶ³þ_::=K|pd㽻W::@FG82,&$&(**,/27::6/2=MJB?IW@IǼվlYhwNNUTloMLONSD8*##\"#$''(./-..488>NML_ĻMBGGSSDNYA4,-.(&(('&)+('*-221536<EC;<CNzø̾ǾhTW]TC<60-,+'#$%%%$(+.131-...,+-59?PWPSj^TGCEA@A?72/.,('*-2992/./0.,2:BMOKHKR`kOIEESgzȾ»ZOOfN=820-()+,1662341.,,+,0;A?==:;<89=DWPCABNȾýV@EM?3253/7?;2/41*&(++-/1/.45/-2:;8;=6/.037?Sgpʿ¼ǹľDGgE2>mJ6:J<388.%%-.*,1.(+75,2JM65?D9>PL56YNCI>.0S͸·]2-8KOPhB10?>11=9*&+..0<9/,7KK\\Z8/7=2--*!\u001e#',7Kg_󹪩w?657;DKA8/++-/.+'(+)+367;EJKW9*(%\u001f\u001d!'# &/9Dտлd<<E917>9/25/+,4-%#(*-B@;=3(\"\"# \u001f\"&*3RCFԿgG9=HSJ:0---0=D=:@4-+$\u001e\u001d\u001c\u001b\u001c\u001f*.264?NLPzǼɺZKANٿ]GRZNF@<7=>8/\"\u001d\u001e\u001d\u001b\u001d#(()-,/579<;969QO?OG<KֺW뻺ϻj??]B/*((&#'*,/0248LI4--)%%/957<<505::<K^\\۶]XU2)+,-08639?3+5BC<<D7+),33050.78535=::LɼƹX<.*.34007;849GEHK?>>>?@PY>1./0.042/07>Iļq˸@;<=;769@MPHIPOLA:=;;GpmL>9/.493/--,/6?JJIɿWOKAEݽƼO_QCFM@<FYRV\\J?<;8=YbNNF;C_M:83.09BBCEIH?EXXJmƽ]BHb½iFDOKNJ?EMObWkcUMYh]X=<OgZtaJKNG>9:GNX|_MJ?1-6=GyWXûl\\\\d~Ľmþ½L@M[_jVOTQ@;8:=?@HGBGG;328<=D@:AV{digOzý^on_ztvUe_SHE@CJQF941.++-..152,/=DL^[Z[[ZDAGH?G¼ºePb\\D7.+*++,//,+*+/8;63=DCDI]{ZROOLGC=BMSĽWA6/.0/,**'''(*+-/134688=FA>ENNC>:7=IRɼnK?=;7442,*,+*,,---.///.2657:747946?MRjkXNRƾȽvWKEEIM?413.()..,.43-,06639?;5;<0-6C=9IV?6HrMA踹½Ĵa\\p?9B<,*9=/-:<0/::..7;00=A41>E68W]<:C=1?ɯѸʶǰȹwI]\\8/;B;2>F68LT74CE35@C7396.1HZ?7JV53<QHAm˼гǺĻٻ{ۼһxD=S53>I94IwP=NJ9<J@T9/@{L:FhG/BN<5CVD5FfL¾}bʹaU黸ɸOM{\\W97]ZNa<MB=I<ER?<_L>I[A3L;;fWCT`x>KVKaͶɲ[ToH=`cGb>ټ?mNAjL^C.>C.?Ua<\\NOY;Ke2<]lM`Z^µlлaQEOFVSVȺbTIRg[E;FS;BNڽMtiI{<49KqBCZI9[G3G޻\\_uwx6=qɻIk^˻FCȹQRQ`hIESLPʽhuNF];<@@5>LJD>HMis^m_[`XIbe_^PɿWJajgG;SϽRgsayabK>DOB;;>@DWRzNHbVJK99jk_P[οoؽkDVɻMSMhPC\\G>E^VGNK;:GlZbM=RͿrhM8D}IJQH@]XIVϿoWzMBgk_eU_OOE?EIARL8Ak>dSBDVoU?RZDLH9JO?Hezվ_ຶl`pcOĽlP¶^Y[EfzNPz@;Ty``\\O|uI?FdP[z@:X_@HXHG]lLTPF`üȿa_ƶgQѿYDA[`CI^j[MYth]D<I_XEEOO_PC93=YZHMfL=KɿƽZ^ƽ[]NuhA<=>@O^_dUeJ>ZkOoIJi\\@8=RG?IO@8I~cl]ƺU`KcƼiϺžKYFDZNC[ZZmY|JB[VFNSP^==BA=@iIENSNVԻ^PYk~ûͿн_PIDpuHD_Pd`VNHjHNL95IgNGTYFD^lWp}Z]Z[YQdegOLMIf_QMWvUO|VXL<7DcZUnbE>LiRjKU][ml}ZlfaLYgSkWS^jtYL]hN>8>JMLMJGDHT[Yk{|~r\\fujuy|lgmliZhk_atQDB=>Ff{MGOWMQ_SXJ[ecae[uƿ̼gSHHdgmYdH;9>@>>FKOQ_R[eeysoNNvuX]UWKlXbH=K`>>sO=_E=TNF_mMTvFIJB{D-/Qb><xt?NgYɺuUxeYC涶iNϺHI>8MwnI>Eܾ_cH;T\\LCԾ[GGZlZkeXK^\\QnHVRJJi]JJ_GDPWXͽzNMI77448HXDNμmvcMbYLKdG=_R:9Hycb^O=:@=BOXL85cBBʿӽYUǾc^SCgViʺTLXD;?rTEAC>JʽD=GE38ѺK?4AȺT:4<BG;8GXC8XƼjϺPHd]BDSeQ;=BICZ˿?DKA@f@:99;UXJN·{Oںl:<taWBOPA;J|nVltn?25?B@XT]ZE_N?>:4;㿽}R^İfdINE0+8V־ȾuWL@OZOEC`MaX;6<C>?mN=HI>=]P9451.:[`MVP@>noNVM?OkI8DSPMdI>LM@;MMO_P>EHFN?/0OmU>J̿³7*-?MC]ϽYQNvmQUfWkK:;FF<KH6>H6.;o]AJiJ56Hr`INpп˴c۽`NJE@<;>HB>Ecb@=FeF4;PG8MʿbǿN<@LVLdйnŶĴH/+*,+0<LLOPESUpĽ¾MS?FHA;\\oMMOXBHFFcxJTi`ƻMNMWERTWA33961,2:<<EaNICT[ZE<JJO]ʻλ^¹8,(+++.:WS^MMN_HBL\\KUoZJFOkH?=A;5>JL@@DVfML\\ùŻȺx^UJ=>PludU=7881,0787<?=<=ELMD??ADJjqcʹWLJX\\LB<54548EVVY`XQLB?FPLIrYfbF@HJ@?Kcjɸ׾V]KKPI>ErOBGOM?;BOKBLM>=C?78DTJJ^chtüҿjn\\rwOJE<;>HLC<9:8007<98<DHCBMxgvȾk\\jcWXzξrSkxJ:=MM@>Kf\\WP?FUM@?I]O@Jg[DFYc¹οǼþ~nTgNUK@LWK@AYZNa}RGJ^bTHGQQ@:?E>89COKAXHVηz{V~ʼncXULCKXJ?MV@7<D93E]F?QzPBK}N;GXBWH^FmOTtʹPPH>PK23Nf;:NP;<MB[n@<KMACWH45B?.2>;/3MF_ԾWOʼ[ĺ¹]ϺѸĽXiFYUC=3-9I:=FF>7IL>>>:08MGF@G?>J_oWVVLEJ׿ɸhnUNNUxT^RO~NDH1?UPIE62^F^_Xm\\[oNJ>=W@HmToA:зiQýüؽۻIDH?dKMXRHEfJ<:GOVJBD\\FJ^JB[ES\\˺mOYY9ܸXO=JdpPP]orBL}>DeHTfRSA>QiZ]T==XYPZM>]rO˼ONgǿWmVWUl{MKmf}YLr׼eLU@G`B@^O}QK`UMWRNUsWUHHTC=JqcPU޾muhMeQ>@b[Z^OARLaFYhoVH\\aYVJ]mDB<OFSH=T[WJM^_NYMMiݾQPż}PRNPIPIK]gXGE^^;7bjJ\\mMGLMe__Xо]XN_WgYavRFN{VKT{˶QTYlĺVR_k[]n_PZTNMOH\\B:Z`Y`mnaWRfgμNJ¿iadm~lhnKDCT^=@SSMZRCEN_i}`RUD]ta`t_Re{p_gD^YNU\\̿j[NdX|pWMgSdh`~kOBIQKLUOJ=N`NPcccbrRHkc[Xt\\=B^NSWNjaNI]TBAMli[bQFOpQM[ck_On|epXdUTues`[Vl\\h\\DIMF@ENOGLUOJ>De]IQ]^e\\NU]^l^r`qü^T`NM_l^nR=?RK>G[\\i]\\QTVac\\YKLemO]]FdQWfeTKǾ\\[nkQKIIHJpNLVL?=O]N[_Nabn|mor[c}q^i\\YubhaIJZZOVlj^LJKW]XjLMZ^MJhqWTX~~zXMVTZ{u^SQIAUa\\x]IGJGGOpsTTgjee_ehcMMg}i_vxkuhWTmxczjSRVTThZ|KHMMJMIHIGIYYR^pgwbpbNQF[cHRPq>T;?EJQPLIpNNXVj\\RMzs]@OH5?dHDqnZtm_`qV^XsVMMOXKSeWZOI_mT^_Phklb]PNVvGI}UPN|qSof^KNyVN}O\\Ll[M_`[TbNQ_D3466;LJNoƾoQlgUMKUI=DSDATXSrq^W[roqmUVdOMYTIKPSTUY[[TkiPq[^TVjoYikYLWhfzx˿S<20388:<?G`XlV^fQaRLTn]ScK[xYjWPk^Mfbk|^rWGGEKWYiE?_YShM?O\\M]ξʽiZDC\\}NOdXSQKMCF^kOt\\D?>1)*.29BO_fѿbnhOV^eľ¾XN[[T\\WFGW|\\OVJ?GmP@NZOajfjS]RNYZaQGDQfο|˼vͼfJEBBQbH?A95=D87AJIULCMWlw^C3./12CVMgʾºſhMDU\\G=DLCKfOIUUROC;>A@JeM=GSMocSKPwRʷjlOELOH]bjs]a^|NIMFA>BEEHLNGATȿVO>44<LPlٿl]JHKSYYUFFJEHJ<:?>:=D<8@OQLD<ENKR[OCP^ižpZGEB?MhiĿtu\\_[leU[V_sjmZ`iYn\\[lUH\\kMMVK@FNOLE8.,()3>BRºOPdYMgrqolasclTZbDAJNJTlf[ekv~hu^LEMGEQ]NLUMKSaXZycQJFEPZNYtbKScgýɿZOTQOsx_t]JLMLVlVMWK@CG@<92.4:45<706<:<CHYaؿfrejȼ`ZvcOim\\iԿeITuNIaZ?>E<:>=<JE88:58Nr_baHJ~˽ľj{n{er}QJXL??BIZ^E98648>=7434;IINam[pp^_W^ſûf_ɿž\\mX?<<:;?8/.37:EF:6778@ECWmsUHWϼľZOUM[pVFHLD>A>7:<?H>61/26993-/2//--.79;>:9Eu̼ƻƼú׿oJ>?CIH<==48;879;:<><;88@I=9=76>fYQH>Hmvjke¸ſýξjbMaMLA=DJB@J=8LJ=>>@EF=0-..0<>5<<28BBEZiп[NHGҿǾ~YTPMi@55><A@410/1>L?<?><@<;5;NELA:9Dir\\XUXkǾÿżǾSMk^^K<55@J;=G805::C>39:4/1709LI;29=KjXSYXιXXh\\ݼõ̻ۺRVBS;DQ:566;A529=53EE2Dk]aKH]B?PSNC9CMEzVvo@Sf䱰ƾ뻱qbRVgJUPKQTD=KwhC3:HG:951J@5:=;7@=4DRGS\\FRYXcfX[XPݻƽÿžκ»H_dJPCB7>jN@93<OF>>KG?EGBYXNKMXJOK;B`QCHLb{DD^տ¸˾iEObI]M@@KY_?7>AHH@<:==9B@:?MRQU_hSHX^FFHH{ºÿ͸j\\x`\\><??77>?:?IIZOFBW^RgRLHLj[Iw]]mYJc\\ZKIĺŹ˻{ԽTNPYcNHhSOOHDMJXI?6:LBAHR?;HRs\\NhMIMXK\\}_K?<M`Xûǹm˹o`M>Gdg?<;CXxpbl?;EFR[XOO\\WEE><BMYAA>=IYZgTIdμǷz}baYLBIfY<8DEKSL?@LHC?<;PxSJC@@XG=KQRckZWU^SҼmɼþι^O[eF9@XNJgvRSnWGFEORIC9<O[L<:GIGS`NQz`^LP_fͺuվj_bοrRýPGR^n||oI=;5En_ONC:@]dF@OVLL^pn_HFAPk]CEj{Y}uؾl}ɾtsv{fF<?WdVMFKgUKMIFNPXll_~Z;27CYVLJKU|Oƽѿb{wDJ^zQUNSZH]gHFL@I\\Z<:JO\\_GKWV]iH_m[|RRFqɿӿUC]Pk_]Nxb]NO_kJ9@NJQ_LE]jN]pF@SYnC?jNEc[Lg?A\\XS۹VԹq?MN}>JYJmGeJ<IF>`MRH=V~ahSLjc^Ⱦ\\}\\ZPp۾LQNMe~[SJP;A@20?D;=A:>Ppwgs¿cq[ĺ~mLN}HEPTZPc[k]eJ^]?FvlLHKFG[nB6GiJjT@}Sx?N[HIڸ辽ZE82*'8B8Eiʵüo˼ŷ任db\\<Ko;?_;T;<EER:/D`<=[@7Mf;:_uNy˿H_|Pz~OX{kWPjOpEFMA@[LL_BOe>2.$\u001e%)(,;KF^ͼû_T`HZ]B_Xo?IM6/;@7>N@2<PFSl;IO?F~jA?LNBNfK[IDjY]ͽŵMDй̼ɼWWOϼMD=-$&%$'2>@IR{þȻȹkMѿ~sTjRNK=9::8<=GWJ@FY|]D>R_OINUNT^g^w^i[KFNOQ`O`ƿTUazMcEB]ʻ?+(&#%/9>IԻƾ}zO^N?[JVPISMO]G>=HC=HNF<?DFU_uWEL`PpgNPh¸ºdHEde}SYUC>:57?D=RW`~QOO3(#!\")-.8vþƾMRjJKA739;=@?=:=;9>GB;=FKXgXuVEllhlQE[abξþmMcSDC;8;=98=>@WZ\\G84.),.*+5N¹ʻYN^jHDMAEWZ[=8JI63;?FM@EKLsOO_bi}ZQKMNYyhhIFSJHpaEAMTOU]PLG94;?<BLI>Hq¹K:;=Cؿž˿S;9<6;C>756.-2205;:=Om^_Ծſ_X`edXJM^VJXL=<74;=<9753<?:9;;9:;;<:79EJ>:;IʿLNn»G@>;;=<=<5-*+,+)*+-18;=?Hajk_MO\\PHIMdʿHM?65110/-.0/,-/1//6=ER\\[]imǿĵVFcTV]_L@;9<=9;;0+,,'&&&*7?=>Ng̳fKJHH]gpPI?0.10,*-,'')&#'((.630017Jnö_SpnMYd]P?H;025602;9331(%&'*5DKL\\ϸ]\\XN=>Hdοru?7<>7./1.-/-%#(*-35/*,1;I\\SMT̹fhat^=>?@>7;8786-'&*-0<J?;Lq̼Ncz<=KIVXV}gTg\\iRG@;;9:>><0*,/04??..889@LTPgX^ξ˻µxP]NHQn`_vLOWJEFMMaE=<BJKI;5/1=>DMWο͹k^nMCFLU_jPE?FIXH9>523.2884/+-03<:1/2835?CL?:JC>WR޼ɴq`nbɼTfG>bK@25T]G?EkXP|ظkƵRQü`TcQ]ihnB[eMI;Gf`OFV[lX=><:?>A@06UټlKZRSGCIRlL:G\\`Y[OzP̽ĳzοͻı}޷MLFLHD=:ISOdIqm_C?>IO9FYDjVGEEXU<3/42.564:>JQh^ZNKžWjmuNuXUpbwļĸa`U{_iUZHEK޾pP\\SrþGIm[R^{QF|StX9>GZػ\\A>RB9Hv¾M=1,--.<@GGAYδӽmINL==:<?Zk{ȸGIJ<4?F8?DV`[]ݻiSTȾzN[>J>FUn5()/MTGRNoM<AXȸXIܳD94;ID>L°e?6cϾW=69ZF9/367@3$\u001e\u001d#Dź9'$,/-' %-D;,*.<@.**1dY5Q0(\"#.>\\OUMZA;68<9X?7-.qN/*.>MB<3'*@ó6))6I>/*&(ClQC>MַV99;9OLi[PF1;>($3ǵSL^J5**4seJ̫H8HfoȲιïBIi¼X?E^ƲgjɿɻWT@DVN;<jZ3*,8FIRMGJ_j꽺`E2.1:<;99<EF@89C:451-09?@@71..,(+04001-//17340-)$'-6A;5,(+3>>=2-09=46:=77:30,(+/59:7-),2<94-,-6;<F><<@?/-/48;B;796:C]PHH?==EzyQC?:>NK^^XoQSiaWYm]NGR_XONp]aeW]fQ>9>QOUI><;FQYTC>9:JMI?>=B]QTUXp`-1!'*%LŤ095R?\u001f-0,ִGI<XC,ħUG+\u001e67=pG_Kb3I+.*/$\u0018\u001c\u001e\u0017\u001c\u0019\u0012\u001b2J*޾IʲbK۾>S7>-14B0-=[ɤέ<))-1=6dXŬ3:sF7[PM޵J@>R>.$\u001e \u001f$\u001e!-%\u001e\u001e&$'%#*%9;.2F*\u001f#&-0λY^j^/4O85I/*mi,15A7*WA>N8-4'\u001d$,#\u001e*& \u001e%*\u001e!%%#'((-/B/.:*/,$+\" #,()./d-EN<PMXħշTزJ8A>7;4;J<04<<JDƱX{U˽ʹļ>^>,,0.\"!!\u001f  #\"!\u0018\u001c\u001d\u001b\u001e #&\u001e\u001b\u001d%&#75.%\u001e\u001d\u001b\u001e\u001f\u001e&..476..+.,+,.(!\"$\"*.$\"\u001f\u001c\u001b\u0019\u001d \"').)'+)..0<2--0,&+),44IF<:89.-7<90-0,%))&#&-,,/65@aCϽķ¿pEKFA;?<48;532318/.?3*,+,*)<7(**%%,.)\"\u001c\u001c\u001f ! \u001f$(!\u001e!('+--=:D\\VIVoƴǻkgT>?C66><5<JI@=7*$#$\"  #%''\"\"$\u001f'4,%$+/(!\u001f\u001f\u001d\u001d\u001e\u001e !\u001e\u001e\u001e\u001e\u001d\u001d\u001e\u001d\u001d\u001e !\u001f\u001d\u001b\u0019\u0018\u001a\u001c\u001d\u001e\u001f\u001e\u001c\u001f\"#%(\"\u001d\u001b\u0019\u0016\u0018\u001c\u001e!&'#\u001f\u001e\u001b\u0017\u0016\u0017\u0018\u0018\u001a\u001b\u001a\u001b\u001c\u001d\u001e\u001f\"\"#$$%'-72023677<<CVSNWǿɹwfͺrݬɼſdTLE=9=DHD@??BEPZOIKG><;<879428<<:>FK]NSNMTM>80..-14:C>2.430246970./.,)))&'(&%&(%!!#*/00/..+*+)*0684/-.30--/8><54:?LJK\\]MHWsaap[WMRkþaceUOWPD>?>=?>@QOKYi`sú½̿h`_[j~[PmSN]PIY^NJNLGRhYE<8774/.5>DGZprϾfvRGWu]byzdNGA?GfaD@>8;HMLRKGD>849A?<=<68>?>=;7468644327:79=:6;=8596137:;FOMQ]jȷÿffun^LKUN@>GM^csĿQK?DOwlXUIKHQͽoYǾ}gYG>=8.+,-/./124:GMD<;::=BEEHHAAC?<>E><=<<@IA9:>@>?EJ]ZKLQF;96138:7773/4:=BC>>L_YfƻcLRj[^zɾľ¿þÿXGHROG@=;<>CGJRYK@><<?ABHUWNey[YgcRKE><9666761159;=:6:?EMXdahvjq^YTI@<<;>LZYW^YLMUQV^TLKNLC===CZt[PdVShmhd]bOINJ<<=:9>HKFD>=G__^z|^g_bf`u[FKUQQOIE^|Z_ͼ̽Žy^yMLb_LPRGJMDCNpþ̼ĽƼ]kYILMQkaJ@AEGLV^^SPXQJNVKMnfOU]NPvqkMXMIPMLyI:JVJ`kTnOY_IJT?9=;69=<==4/51/6>;BYH>E?8=I?AZVI\\pJJiXLoinr^RB;@IEKcmjo]KHH<7<>?EC<;<::BHDKROfžĿltUM_glm|~[MVRIBHCH_j^pQFJN\\swk}na[`M?9:<<==978659956;947:;>=;;@HIKLIHUXIDGHN]NA>@ABIFCUkX]lUNX`e[TWh`RMYaYYLFIb_efTUTM[k_xl_ot_MEJS]_swYTe_WXýǿþdh`TLH?=BHMNTXUXPV~_Z[PMuqOKKHM\\canq][gjrnmWLQHDCA?HODDPOLMQYfQNa]]ghdtXOOHITXONOLHFE?=;8;C=8;:9BI=@JA=IH=A?99>>?JFCJLBFD==AFEHB>@DMmzü̼_rp[W^^obQZwbjsRPNMYkiƿ`žfVS]gXEGPJD=99EON[P@;Kcf{nY[?DOL@>68<9?R]KVhMO]KGnqKla|{lgWRUUTNFMfKGRXPWcMYSADB8<@<@@@M[MCOPIPVJEL@>FC><@@ACC@CJFIZSEGQJEMIBGE=DSISɽƽOkO\\iM[TjlݾRPSKyI^Ŵ๽в=VDBC1:D8I{ǴʾJllCLFE@:=6c8~P-VM-NE0MA`>AaU0E˾<߽9F?G9CJLK=H4753o19@5n</]7(?H-Mk5KrܴA;OKI[=I>D>l:.5))5&)2,5I/9f5)JLBͺZ4aX@VK0JDGjH^ǺdHδɰ@׽˾OM>N78SG@^=ϼŮɹԮ=ηYF7.㽴ȻKK9C<Fi;6.\u001d ,\u001e$4,253|Ͱ̻pfJ?IJ/0j6FDMA1,L9+;<177L?4&*.,;?57H<m`.0<5UK^O035N>5;9:GERͻƲL2<?AdjoC2/+/>@1FB?=?YlSëLO=7`W4^¶FEEǸJ3K|4:9&&-\u001d\u001f1\u001f\u001d$-WjϲȤ6-ND>h9'0>0Zf;pBʺDPѭvL=nNftf..J6=,-S{3E6& \"774.[HGaT9̯֬@*/GFB3$)/2.0.)\u001b!Kȷ>9BKDMgHF2;KBQ8#\u001d\u001b\u001d#\u001d\u001d% \u001f+dUKKC-4C=L@-(+1>.-<<,cDrP˨7/;8Ld1-Nð཰˳HJϪ./G7;;42I;FB$1PB?ʮiòFۯ6-H049&#).Co,#=Q^ֹ꿬ƾ5Ю쫟ưD8),\u001b\u0019%\u001b\u0018#\u001d+_3CJ^ķ`Eкm?k0 &'47\u001d\u0019\u0018\u001d#(-(.QGKj=3MG>PB?QHP4/޷S7/?.&*-MC*(+>nJOBXXֳTUE1/'0/5+\u001f\"+:>8+#4=]1-/,E=?RjlŰD1* )-1,).A˺ǽĬdɨžλwh@=0(0K?L<;ROED^hG?UẻHn0I7.)=76MaB:e0-4$$?[vXRͻ򾯩۴ǹK18p6*,\u001f\u001f25:@,\u001f470><K^A<9.957z\\Sм.%& \u001d\u001c\u001a\u0018#8<]8JXJwϳJ̮WQ̿>5FG6?<>6/6O<AɯY)!+N;206f|=>ڹb=N[,-6LbAFbM׹Zν?--7=/%**>SS5,./.3=Gķ4?Eƪȫ;<*)(+#\u001d (>_E??<?LĭHfjɩF8GxH38k205PĽD@8104<Ԭ<.5\\P1*+5^S4:a=9C}9,+1HV<?7;A14BɱּƼE_Ʋ`s90Fw@@NoNJGOhJINe9-@⾯ƾõ@Rӻvcƻ`γpm1(%(,.755A_IJ|ĻɾgY붫^?7HMR̺SCENϽ켯fiB2+1DMH@AK;PSHbbD588??-.<AJQ;8<He[ɼ|ǿbD=>NPDDB@VtMHJ}_]@CeQAMkZ>EFXջ~IGPYcJHQhƻlZDORB-++-36-.58cPO_߽rk>4;>KY¾SX[־LH=6:50815HKnOhF<5;@>GLB[[jG\\cYƾe]L::<:NncmSZIG_IU˽U<EA<rX`aLU]lJ<JKFA6024=B>ETKfȾyD987CiKJMOSFXVO^Ƶ\\LDQ?9;6007WcO\\QJ788@>=>O[CA>LOJ^;BaL<GICF:799FNPpռHGTFCCN̻cE<@EV>BO__`SZ]H;@>AVJFk־ȽV[g[L>?OkkemýLZ]QCBIMC>=FpP^jQGUaUUP?DE@HLX̿M>@^UC:47;;587?]dgz|^[Z[l}pqcI>?F=:>BTbnaYxWDGCF?DB>H=;@IYkMLlMCEQSKVUNNZlnOAV\\Swx]VLWzccvfYVMC>ISC><775128>Mki_ùOhaNOMJKKGBCNbUKLXrXVZC<;:;:8:GLHOQTqp}YNftѾhc\\]IGm~LU\\[pgP_w}w]NLXdNOR^XULJE9:GLI>3.136:;?NpxOJZþR?FMNI;5779<<;BKSpV[[bm|¾ZIDADKBEWVnc]o^NHTzcsmWPTNIZzdgziYgc^]\\lwykw`VJ<8<AHMF=;;>A=>IT]dZSqlļxE869FWOE?:7:6589?HIHON\\^SOQtc_K\\fQLUH@C;;?><<:;@B?@>Hkn~o]^t]OHCGU[SOVintǼ|UHIMRaZZ\\VPJDCNno[OTlvtǾaZYW_eYNJGILJHDBHPSSQSn_RLD><;?DDFDACCDJLJ\\ykkv\\h[SXNHHCCNUQXRPUO[pmZ\\jzutXLLGIRRLMKFGD?<:;>EDBCBGGLccc`o~`TUTYSMKILPQQOQY\\[^khs_MHGHRQFEIIINNTildVPTZUg^[lvub\\TOIL\\nwiPFMMHIGAELKHEGJJJPZckturoYPVni`YLO`~QNNGDGKJMSKHLTVSSV]jo[OUi\\PWTKHDCJNKGFHMNLMMN\\i~naimm_Udon^WWRZyn]TLMZwdnthZkkww[NLKPacbsmolUSUQy~n^q^OGBCIOW\\[VSVOJHGDGPUTOS^z|}l|z_X[PNZ`caYTRLEHLSl}uwhfa~eg]_gsVTOJQSJMNKOMGIIIQaYYi_|[WQOfuzYSRKPe]WZYb{a^d\\rna}gZYSP[]XZW\\ln^`_if\\_\\[dij{skly~p~pi]^wjSNNPSQOVZYk|fjdibYTSU\\t}c`^Z`a^`]_vm[[^`{i[WMNYa[\\\\RU\\X[ccrp[XXU^k\\YZZ_gb^nuZNMPZ``^X[b^[^_^g[RUOR_`]c`i{kxhVQT`{xxs^\\cd`bkoix{xzbe^ewi\\ZZ]gfav{pnmklmggllfbc^VQU\\]^VMMLNY[^^ctnnqx}i[WU[_ZSLJLRTUW]ik]VX^lpj_YZ^hmh^Y^nffovytuo{g_jj`^ffmjVUZ^jf[VXVYafjb`wz~po|zzmhijvv{im|~i^^]dr||xbhy||}{hgd]\\]`i}{~j}f\\^_allmwi`W[`ZVURRPNPTS\\mnn}}mi_X]hona^dn~d[`\\Z]^afljkhat|qijma`b^cqvkqtd[XUYcbcpiplglmijxug`if]\\[[^[Y[]nz{pxtk`^Z^^b|kqtka\\Z[hvwuwsj_byzldbd_^`acfie_duvmkhnxknwtkoz|od[`nnrkck{ymc\\ZZ^a]^_dnlfknl{zoqg]ZX[ZYUW_a]][[enspgcgcbcZX_fbbgen|qrmeilpu{uvz}cZXZ]eon|k{lxwp|{||z||nmr{omjlpsv|qz|ompokkdxrvdllhigdhjdo{v|rrfe[YXVWVTTXWZa`d|ptv{kjvlkwuivzoz{y}{j^_^]^[^^[[\\]YZ^^^^_`^\\`bcglnrkjmcbc_iuxv{|ty|yty|ytd\\^__``dlwvnnlcehfl}z~|wulgowvqnhnzmz|oilry~wlmpmmnb`jqlvz{zunyyrmmhnpmrz{ga_[Z]\\[]`hjr|sti^Z[\\]_\\\\empumedknrpijidccZXYXZYY]cgedahv|r~}zpu}vnvuc^_bdea]]_enljwuxmpvoehpvzvt}}v~zw}wxt{yopqnrmeflt}oijlkllkx{qorldeuyonfbdeadolnuihopprb\\]^blnhinnkga^dmnnd\\Z]``___dmrohcc_^befija`bccgf^]]]ckkkjgdfednvyvt}ugb`_acd_^_^a`bdkrou|wz~x{uxnn|~|wtx}pkyyhb^]^ZY[Y\\`^\\_eijmqsqjnvpptqvtmyvh`_dhmi`]^^]^_^^hpedhghfccda_fc__\\]agkojlwpdfos~}mqqs|vvv}{xvux|uvsuxmihbdkpifb_ejgnut{qqryortz~}~twvx{puvropsqunlor{z~}~wrpplnlggjkkhfjgbcijkiiflmovtnqpifmnjje`^^]`_^^^]\\[\\]^^^^^`ddaa`^^dhkjhgjnllomusidbce^\\ZY[YWY^ainkmlmkjkkjn|ts~~zx}ptvusqonmfeggeddehmowysnmlijkjiigkomnnns}xyzzspupnpjdb]]^_bijkjefiigidcbabc`bb^_ecdfa_bbab__`aahiikklpmjkjntus}xuvqmmmnlklmovxmilorvoprx{~y}zwr|ups{usy{{ywsnlouorwz~skjijlg_abbeeccefosmmsx}wmkjkkjjlihkieb```cbbfb__^aeimgbb`_acbcirrnljmrw{wtqonleffcdca```aadfiifddcegffa`deiopvyv~~rjhdejmnsunkhffknnkiikhgddeffkllnu|~xppqokicbccghjlmmjfeinkke`^_dedddfikmkihhgfffjlkjgffdc_^^^`acfhlmkheekopnifhkmqlfgllmnifhgjnq|zxxroolsroszwvrnpy|w|z}}}{wz~~{}njmstmljhknnnljloou}}{smmrtnnqprsmjhgeggebcdee`\\]agghhhknrusnnnmlmlotolidgligkllrpnkhhijhghgjjhd`bfjjiikkmprtyxtqnnsyvwsmnxxuy|~|~}|z~}{zrqx}{zzxxxwwrux|xpmmotsmnpquxvuomoqqrtv{xqnnotsolnprtomieeddfgjlmjhhilnnmnnopnppkkmjijkmmkihffecaaceihegdaccbdeggebacdhjjlmoux{||z~~}ywwzzyyqvunpspvxrnswzz|~zzzy{|wsrs|}wyytv|xyy{~{wttzyvrtxz}|tpppoonmossonkkmonmmnosvupllnmmooppomkhhkkihigffdabbcefdeghijiikkkjijjkllkjhhiiiiklklomlmopquttxxvupnponooooooosywyz~}z~}{{|||}}yvx{~}|y{}}}zzyyxxxxxz|~y~~~zvsrspnmmmkjlkkkjjklnqpnlklmmmmnoonnnnmlkmnmmmmmlkihgfeddedeefgfeeghknonnmkjlkklmnmlnnooqtvwvttuvwsrsqoqqpqpopqppooqsvz{zz|z{}~~}~|{}{|ytpppponmnpqprrqonnpqpoommmlnqttuxyzutwwurnkkjiiheddcccb`acfefhhhghhiiijjiijkmorsrwyvtuvwwusssstpnllkjihhhilnnrxzzzz{{zzxttrqrpsyy{}}~~|zxvx{}~ytppomnnlmonoqsvz{yzzyvspoonnnmopprpnnpsvwuooonnmkkkjjklkkjiijklnoopqssqppprrrqsurqrnlmmnoomlmnmmmnnmlllmnmmmmntxwxxv|}{z||}~}~~{zy{~}}~}|zz|{ywvvwwvsqqpnnmlmnopqquw{{xx{}{ywwy{}}{yywuuqooonnmkjkkkljjjjkkjikkkmljklllkjlmkjjknpppqopppoonlmnmlkjkllmmmmmnmmnooqqqsvwxxwz}}{xwz}~}~|}~}~~~}}|{{{zzyywuuvvwxxwxyz{z{}}~{|||~|{|zz{xuussutrsrpoooponmmllmmnoopppqrppsrqponnnnnnmmnnnnnnopooonmllllmmmmlllmopprssvwwuwwwxwwyyz{|zzz|}|{{||~~}}}zxwwxz{{zxwxz|~~~zxvvy{ywwtuwxwxy{|{|||||zwvuvy{xxzyxxvtssstttttrqnmmnnnnmmmmmmnnnnnnoooponnnnooonopppnnnmnonoonnonmmmnooopppppopqqrssuvwxxwxyz{||||||}||{{{z{}|||{{z{{||}~}~~~~~~~}~}|~~~~~~}||{{{zxwvtuvvtutssrppppqonnonnnmmmmnonnnnoppqqpponnnonooonoqsttuwwvwwuuwvtvvuvtttsqstsrqqqrrstsssqrrstuvvvvwy{{{{||}}}}~~~}|~~|{{{}}}}{zyyxyyyzyyyyzyxwvuvwvuuvvvvutuuvusqpqssqppqqsssssrsrstuuuuttvwvvttuvttttuvvutttvvuuuuwxvvvvvxxxyxyzz{}||}}{||{{zxwxxyyyz{|{{{{|}||||}}}}~~~|zyxxxxxxwwvuuuttuuvvvvwvvuvvuttvwwvusttstuttuuttsqrrstsssssssqqpppqppppqpooppooopppppppqrtuuuvwxxwwwxyyz{z{||z{{z{|{{||}}|{{zz{{|~~~~~~~|{{}~~}|}}~}{{{||||zzyyyyyzyxwvvvwwvvuvwwwwwwwxvuuvxyyyyyzzzxwwxyxxyxwvutuuutsrrrqrrpppqsttuwwwwvwxyzzzzz{{|{yxyyzzyyyyxxxxyyyyyyzzzzyxwyzz{{|{{{{|}}~~~~~~~}~~~}|zz{|{{zz{{zywvvvuuutuvvuuuuuuuuuuwwvvvuuttssttttsstuuuuuuuuutsssrssstuuvutuvvvvuwxxxxxxyyxxxxyyxxwxyzzyzzzz{zzz{{{||}}~~~||}~~~~~~~~~~}}|{{{{{{{|{{zyyzzzzyz{{z{{zzzyyyyyyxwwvvvuvuuvvvvvtttttttuvvvvvvwwxxxxzzzzzzzyyyyyzzzyyzzyzzyzzzzzyyyxyyyyzzyyyyyxyyyyzzz{{zzzzzzz{||||}}~~~~~~~~~}||||||}|{{zyzyyyyxyxxyyxxxwwwwxxxyyxxxxxxxyyyyzzyyyyyzzzzyxxxxxxxxyyyyzzzzyyyyyyyyyyxxxxyyyzzz{{{{{{{{||||{{{|||}}}}}}}~~~}}}}}~~~~~~~}|}}}~~~~~~~~~~~~}|||||{{zzzzzzyyyxxxxyzzyzzzzzyyyyzzzzzyyyyxyxyyyxxxyyyxxxxyyxxxxwwwwxyzzzzzzzzyyxyyzzyyyyxxxxxxxwwwxyyyyyyzzz{{z{{zz{{|}}}}~~~~~~~~~~~~~~~~~~}}|}|||||||}}|||{{{{{{{{{{{z{{{{{{{{{{zzzzzz{zzzzzyyyyyyzzyyzyyyzyyzzzzz{{{{{{{|||||||{{{{||||||{{{z{zzz{{z{{zzzzzzzz{{{{{{{{{|||}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}|||||||}}}}}}}}}}}}||||||{{{{{{{{{{{{{{zzzzzzzzzyyyyyyzyzzzzzzzzzzyzzzzzzyzyyzzzz{{{{{||{||||||||||||||||}}}}}~~~~~~~~~~~~}}}|||||}}|}}}}~~~~~~~~~~~~~~~~~~~~~}~}}}||||{|{{{{{{{{{{{{{{||||||{||||{{|||||||||||||||{{{{{{{{{{{{{zz{{{{z{{{{{{{{{{||{{{|||||||}|}}|||||}}}}}|}}}}}}}}}}}}}}}~}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}}}}}}}|||||||}|||||||{{{{{{zzzzzzzzzzzzzzzzzzzzz{{{{{{|||||||}}}}|}}}}}}}}}}}||}}}|||}}|||||||||||}}||}}}}}}}}~~~~~~~~~~~~~~~~~}~~~~}}}}}||||}}}}||}}}}}}}}}}}}}}}}}}}~}}}}}}}}}}}}}}}}|||||||||||||{||{{|||{{{{{{{{{{{{{{{{{{{{{|||||||||||||}}}}}}}}}}}}}}}}}}}}}}}}}~~~~~~~~~~~~~~~~~~~}}~}~}~~~~~}}}}}}}}}}}}}}}}||}}}}}}}}}}}}}}}}}}}}}}}||||||||||||||||||||{{{{||{|||||||||||||||||}}}}||||}}}}}}}}}}||}}}}}}}}}}}}}}}}}}}}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}}}}}}}}}}|||||||||||||||||||||||||||||||||||||||||||||||||||}}}}}}}}}}}}~~}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}}}||||}|||||||||}}}}||}}}|||||||||||||||||||||||||||||||||||}}}}}}}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}|||||||||||||||||||||||||||||||||||||}}}}}}}}}}}}}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}~~}~~~~~~~}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~~~~~~}}}}}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~}~~~}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}}~~~}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}}}~~~~}}~}}}}}~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
  },
  {
    "path": "examples/server.c",
    "content": "/*\n * A simple RTSP server implementation using libevent [1].\n *\n * To obtain `audio.g711a` and `video.h264`:\n *\n * $ ffmpeg -i http://docs.evostream.com/sample_content/assets/bun33s.mp4 \\\n *     -acodec pcm_mulaw -f mulaw -ar 8000 -ac 1 audio.g711a \\\n *     -vcodec h264 -x264opts aud=1 video.h264\n *\n * [1] https://libevent.org/\n */\n\n#include <smolrtsp.h>\n\n#include <smolrtsp-libevent.h>\n\n#include <assert.h>\n#include <errno.h>\n#include <inttypes.h>\n#include <signal.h>\n#include <stdbool.h>\n#include <stddef.h>\n#include <stdint.h>\n#include <stdio.h>\n#include <stdlib.h>\n#include <string.h>\n\n#include <arpa/inet.h>\n#include <netinet/in.h>\n\n#include <event2/buffer.h>\n#include <event2/bufferevent.h>\n#include <event2/event.h>\n#include <event2/listener.h>\n#include <event2/util.h>\n\n// G.711 A-Law, 8k sample rate, mono channel.\n#include \"media/audio.g711a.h\"\n\n// H.264 video with AUDs, 25 FPS.\n#include \"media/video.h264.h\"\n\n// Comment one of these lines if you do not need audio or video.\n#define ENABLE_AUDIO\n#define ENABLE_VIDEO\n\n#define SERVER_PORT SMOLRTSP_DEFAULT_PORT\n\n#define AUDIO_PCMU_PAYLOAD_TYPE  0\n#define AUDIO_SAMPLE_RATE        8000\n#define AUDIO_SAMPLES_PER_PACKET 160\n#define AUDIO_PACKETIZATION_TIME_US                                            \\\n    (1e6 / (AUDIO_SAMPLE_RATE / AUDIO_SAMPLES_PER_PACKET))\n\n#define VIDEO_PAYLOAD_TYPE 96 // dynamic PT\n#define VIDEO_SAMPLE_RATE  90000\n#define VIDEO_FPS          25\n\n#define AUDIO_STREAM_ID 0\n#define VIDEO_STREAM_ID 1\n\n#define MAX_STREAMS 2\n\ntypedef struct {\n    uint64_t session_id;\n    SmolRTSP_RtpTransport *transport;\n    struct event *ev;\n    SmolRTSP_Droppable ctx;\n} Stream;\n\ntypedef struct {\n    struct event_base *base;\n    struct bufferevent *bev;\n    struct sockaddr_storage addr;\n    size_t addr_len;\n    Stream streams[MAX_STREAMS];\n    int streams_playing;\n} Client;\n\ndeclImpl(SmolRTSP_Controller, Client);\n\nstatic void listener_cb(\n    struct evconnlistener *listener, evutil_socket_t fd, struct sockaddr *sa,\n    int socklen, void *ctx);\nstatic void on_event_cb(struct bufferevent *bev, short events, void *ctx);\nstatic void on_sigint_cb(evutil_socket_t sig, short events, void *ctx);\n\nstatic int setup_transport(\n    Client *self, SmolRTSP_Context *ctx, const SmolRTSP_Request *req,\n    SmolRTSP_Transport *t);\nstatic int setup_tcp(\n    SmolRTSP_Context *ctx, SmolRTSP_Transport *t,\n    SmolRTSP_TransportConfig config);\nstatic int setup_udp(\n    const struct sockaddr *addr, SmolRTSP_Context *ctx, SmolRTSP_Transport *t,\n    SmolRTSP_TransportConfig config);\n\ntypedef struct {\n    SmolRTSP_RtpTransport *transport;\n    size_t i;\n    struct event *ev;\n    struct bufferevent *bev;\n    int *streams_playing;\n} AudioCtx;\n\nstatic SmolRTSP_Droppable play_audio(\n    struct event_base *base, struct bufferevent *bev, SmolRTSP_RtpTransport *t,\n    struct event **ev, int *streams_playing);\nstatic void send_audio_packet_cb(evutil_socket_t fd, short events, void *arg);\n\ntypedef struct {\n    SmolRTSP_NalTransport *transport;\n    SmolRTSP_NalStartCodeTester start_code_tester;\n    uint32_t timestamp;\n    U8Slice99 video;\n    uint8_t *nalu_start;\n    struct event *ev;\n    struct bufferevent *bev;\n    int *streams_playing;\n} VideoCtx;\n\nstatic SmolRTSP_Droppable play_video(\n    struct event_base *base, struct bufferevent *bev, SmolRTSP_RtpTransport *t,\n    struct event **ev, int *streams_playing);\nstatic void send_video_packet_cb(evutil_socket_t fd, short events, void *arg);\nstatic bool send_nalu(VideoCtx *ctx);\n\nint main(void) {\n    srand(time(NULL));\n\n    struct event_base *base;\n    if ((base = event_base_new()) == NULL) {\n        fputs(\"event_base_new failed.\\n\", stderr);\n        return EXIT_FAILURE;\n    }\n\n    struct sockaddr_in sin = {\n        .sin_family = AF_INET,\n        .sin_port = htons(SERVER_PORT),\n    };\n\n    struct evconnlistener *listener;\n    if ((listener = evconnlistener_new_bind(\n             base, listener_cb, (void *)base,\n             LEV_OPT_REUSEABLE | LEV_OPT_CLOSE_ON_FREE, -1,\n             (struct sockaddr *)&sin, sizeof sin)) == NULL) {\n        fputs(\"evconnlistener_new_bind failed.\\n\", stderr);\n        return EXIT_FAILURE;\n    }\n\n    struct event *sigint_handler;\n    if ((sigint_handler =\n             evsignal_new(base, SIGINT, on_sigint_cb, (void *)base)) == NULL) {\n        fputs(\"evsignal_new failed.\\n\", stderr);\n        return EXIT_FAILURE;\n    }\n\n    if (event_add(sigint_handler, NULL) < 0) {\n        fputs(\"event_add failed.\\n\", stderr);\n        return EXIT_FAILURE;\n    }\n\n    printf(\"Server started on port %d.\\n\", SERVER_PORT);\n\n    event_base_dispatch(base);\n\n    evconnlistener_free(listener);\n    event_free(sigint_handler);\n    event_base_free(base);\n\n    puts(\"Done.\");\n    return EXIT_SUCCESS;\n}\n\nstatic void listener_cb(\n    struct evconnlistener *listener, evutil_socket_t fd, struct sockaddr *sa,\n    int socklen, void *arg) {\n    (void)listener;\n    (void)fd;\n    (void)socklen;\n\n    struct event_base *base = arg;\n\n    struct bufferevent *bev;\n    if ((bev = bufferevent_socket_new(base, fd, BEV_OPT_CLOSE_ON_FREE)) ==\n        NULL) {\n        fputs(\"bufferevent_socket_new failed.\\n\", stderr);\n        event_base_loopbreak(base);\n        return;\n    }\n\n    Client *client = calloc(1, sizeof *client);\n    assert(client);\n    client->base = base;\n    client->bev = bev;\n    memcpy(&client->addr, sa, socklen);\n    client->addr_len = socklen;\n\n    SmolRTSP_Controller controller = DYN(Client, SmolRTSP_Controller, client);\n    void *ctx = smolrtsp_libevent_ctx(controller);\n\n    bufferevent_setcb(bev, smolrtsp_libevent_cb, NULL, on_event_cb, ctx);\n    bufferevent_enable(bev, EV_READ | EV_WRITE);\n}\n\nstatic void on_event_cb(struct bufferevent *bev, short events, void *ctx) {\n    if (events & BEV_EVENT_EOF) {\n        puts(\"Connection closed.\");\n    } else if (events & BEV_EVENT_ERROR) {\n        perror(\"Got an error on the connection\");\n    }\n\n    bufferevent_free(bev);\n    smolrtsp_libevent_ctx_free(ctx);\n}\n\nstatic void on_sigint_cb(evutil_socket_t sig, short events, void *ctx) {\n    (void)sig;\n    (void)events;\n\n    struct event_base *base = ctx;\n\n    puts(\"Caught an interrupt signal; exiting cleanly in two seconds.\");\n\n    struct timeval delay = {2, 0};\n    event_base_loopexit(base, &delay);\n}\n\nstatic void Client_drop(VSelf) {\n    VSELF(Client);\n\n    for (size_t i = 0; i < MAX_STREAMS; i++) {\n        if (self->streams[i].ctx.vptr != NULL) {\n            VCALL(self->streams[i].ctx, drop);\n        }\n    }\n\n    free(self);\n}\n\nimpl(SmolRTSP_Droppable, Client);\n\nstatic void\nClient_options(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    (void)self;\n    (void)req;\n\n    smolrtsp_header(\n        ctx, SMOLRTSP_HEADER_PUBLIC, \"DESCRIBE, SETUP, TEARDOWN, PLAY\");\n    smolrtsp_respond_ok(ctx);\n}\n\nstatic void\nClient_describe(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    (void)self;\n    (void)req;\n\n    char sdp_buf[1024] = {0};\n    SmolRTSP_Writer sdp = smolrtsp_string_writer(sdp_buf);\n    ssize_t ret = 0;\n\n    // clang-format off\n    SMOLRTSP_SDP_DESCRIBE(\n        ret, sdp,\n        (SMOLRTSP_SDP_VERSION, \"0\"),\n        (SMOLRTSP_SDP_ORIGIN, \"SmolRTSP 3855320066 3855320129 IN IP4 0.0.0.0\"),\n        (SMOLRTSP_SDP_SESSION_NAME, \"SmolRTSP example\"),\n        (SMOLRTSP_SDP_CONNECTION, \"IN IP4 0.0.0.0\"),\n        (SMOLRTSP_SDP_TIME, \"0 0\"));\n\n#ifdef ENABLE_AUDIO\n    SMOLRTSP_SDP_DESCRIBE(\n        ret, sdp,\n        (SMOLRTSP_SDP_MEDIA, \"audio 0 RTP/AVP %d\", AUDIO_PCMU_PAYLOAD_TYPE),\n        (SMOLRTSP_SDP_ATTR, \"control:audio\"));\n#endif\n\n#ifdef ENABLE_VIDEO\n    SMOLRTSP_SDP_DESCRIBE(\n        ret, sdp,\n        (SMOLRTSP_SDP_MEDIA, \"video 0 RTP/AVP %d\", VIDEO_PAYLOAD_TYPE),\n        (SMOLRTSP_SDP_ATTR, \"control:video\"),\n        (SMOLRTSP_SDP_ATTR, \"rtpmap:%d H264/%\" PRIu32, VIDEO_PAYLOAD_TYPE, VIDEO_SAMPLE_RATE),\n        (SMOLRTSP_SDP_ATTR, \"fmtp:%d packetization-mode=1\", VIDEO_PAYLOAD_TYPE),\n        (SMOLRTSP_SDP_ATTR, \"framerate:%d\", VIDEO_FPS));\n#endif\n    // clang-format on\n\n    assert(ret > 0);\n\n    smolrtsp_header(ctx, SMOLRTSP_HEADER_CONTENT_TYPE, \"application/sdp\");\n    smolrtsp_body(ctx, CharSlice99_from_str(sdp_buf));\n\n    smolrtsp_respond_ok(ctx);\n}\n\nstatic void\nClient_setup(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    SmolRTSP_Transport transport;\n    if (setup_transport(self, ctx, req, &transport) == -1) {\n        return;\n    }\n\n    const size_t stream_id =\n        CharSlice99_primitive_ends_with(\n            req->start_line.uri, CharSlice99_from_str(\"/audio\"))\n            ? AUDIO_STREAM_ID\n            : VIDEO_STREAM_ID;\n    Stream *stream = &self->streams[stream_id];\n\n    const bool aggregate_control_requested = SmolRTSP_HeaderMap_contains_key(\n        &req->header_map, SMOLRTSP_HEADER_SESSION);\n    if (aggregate_control_requested) {\n        uint64_t session_id;\n        if (smolrtsp_scanf_header(\n                &req->header_map, SMOLRTSP_HEADER_SESSION, \"%\" SCNu64,\n                &session_id) != 1) {\n            smolrtsp_respond(\n                ctx, SMOLRTSP_STATUS_BAD_REQUEST, \"Malformed `Session'\");\n            return;\n        }\n\n        stream->session_id = session_id;\n    } else {\n        stream->session_id = (uint64_t)rand();\n    }\n\n    if (AUDIO_STREAM_ID == stream_id) {\n        stream->transport = SmolRTSP_RtpTransport_new(\n            transport, AUDIO_PCMU_PAYLOAD_TYPE, AUDIO_SAMPLE_RATE);\n    } else {\n        stream->transport = SmolRTSP_RtpTransport_new(\n            transport, VIDEO_PAYLOAD_TYPE, VIDEO_SAMPLE_RATE);\n    }\n\n    smolrtsp_header(\n        ctx, SMOLRTSP_HEADER_SESSION, \"%\" PRIu64, stream->session_id);\n\n    smolrtsp_respond_ok(ctx);\n}\n\nstatic void\nClient_play(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    uint64_t session_id;\n    if (smolrtsp_scanf_header(\n            &req->header_map, SMOLRTSP_HEADER_SESSION, \"%\" SCNu64,\n            &session_id) != 1) {\n        smolrtsp_respond(\n            ctx, SMOLRTSP_STATUS_BAD_REQUEST, \"Malformed `Session'\");\n        return;\n    }\n\n    bool played = false;\n    for (size_t i = 0; i < MAX_STREAMS; i++) {\n        if (self->streams[i].session_id == session_id) {\n            if (AUDIO_STREAM_ID == i) {\n                self->streams[i].ctx = play_audio(\n                    self->base, self->bev, self->streams[i].transport,\n                    &self->streams[i].ev, &self->streams_playing);\n            } else {\n                self->streams[i].ctx = play_video(\n                    self->base, self->bev, self->streams[i].transport,\n                    &self->streams[i].ev, &self->streams_playing);\n            }\n\n            played = true;\n        }\n    }\n\n    if (!played) {\n        smolrtsp_respond(\n            ctx, SMOLRTSP_STATUS_SESSION_NOT_FOUND, \"Invalid Session ID\");\n        return;\n    }\n\n    smolrtsp_header(ctx, SMOLRTSP_HEADER_RANGE, \"npt=now-\");\n    smolrtsp_respond_ok(ctx);\n}\n\nstatic void\nClient_teardown(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    uint64_t session_id;\n    if (smolrtsp_scanf_header(\n            &req->header_map, SMOLRTSP_HEADER_SESSION, \"%\" SCNu64,\n            &session_id) != 1) {\n        smolrtsp_respond(\n            ctx, SMOLRTSP_STATUS_BAD_REQUEST, \"Malformed `Session'\");\n        return;\n    }\n\n    bool teardowned = false;\n    for (size_t i = 0; i < MAX_STREAMS; i++) {\n        if (self->streams[i].session_id == session_id) {\n            event_del(self->streams[i].ev);\n            teardowned = true;\n        }\n    }\n\n    if (!teardowned) {\n        smolrtsp_respond(\n            ctx, SMOLRTSP_STATUS_SESSION_NOT_FOUND, \"Invalid Session ID\");\n        return;\n    }\n\n    smolrtsp_respond_ok(ctx);\n}\n\nstatic void\nClient_unknown(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    (void)self;\n    (void)req;\n\n    smolrtsp_respond(ctx, SMOLRTSP_STATUS_METHOD_NOT_ALLOWED, \"Unknown method\");\n}\n\nstatic SmolRTSP_ControlFlow\nClient_before(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    (void)self;\n    (void)ctx;\n\n    printf(\n        \"%s %s CSeq=%\" PRIu32 \".\\n\",\n        CharSlice99_alloca_c_str(req->start_line.method),\n        CharSlice99_alloca_c_str(req->start_line.uri), req->cseq);\n\n    return SmolRTSP_ControlFlow_Continue;\n}\n\nstatic void Client_after(\n    VSelf, ssize_t ret, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    (void)self;\n    (void)ctx;\n    (void)req;\n\n    if (ret < 0) {\n        perror(\"Failed to respond\");\n    }\n}\n\nimpl(SmolRTSP_Controller, Client);\n\nstatic int setup_transport(\n    Client *self, SmolRTSP_Context *ctx, const SmolRTSP_Request *req,\n    SmolRTSP_Transport *t) {\n    CharSlice99 transport_val;\n    const bool transport_found = SmolRTSP_HeaderMap_find(\n        &req->header_map, SMOLRTSP_HEADER_TRANSPORT, &transport_val);\n    if (!transport_found) {\n        smolrtsp_respond(\n            ctx, SMOLRTSP_STATUS_BAD_REQUEST, \"`Transport' not present\");\n        return -1;\n    }\n\n    SmolRTSP_TransportConfig config;\n    if (smolrtsp_parse_transport(&config, transport_val) == -1) {\n        smolrtsp_respond(\n            ctx, SMOLRTSP_STATUS_BAD_REQUEST, \"Malformed `Transport'\");\n        return -1;\n    }\n\n    switch (config.lower) {\n    case SmolRTSP_LowerTransport_TCP:\n        if (setup_tcp(ctx, t, config) == -1) {\n            smolrtsp_respond_internal_error(ctx);\n            return -1;\n        }\n        break;\n    case SmolRTSP_LowerTransport_UDP:\n        if (setup_udp((const struct sockaddr *)&self->addr, ctx, t, config) ==\n            -1) {\n            smolrtsp_respond_internal_error(ctx);\n            return -1;\n        }\n        break;\n    }\n\n    return 0;\n}\n\nstatic int setup_tcp(\n    SmolRTSP_Context *ctx, SmolRTSP_Transport *t,\n    SmolRTSP_TransportConfig config) {\n    ifLet(config.interleaved, SmolRTSP_ChannelPair_Some, interleaved) {\n        *t = smolrtsp_transport_tcp(\n            SmolRTSP_Context_get_writer(ctx), interleaved->rtp_channel, 0);\n\n        smolrtsp_header(\n            ctx, SMOLRTSP_HEADER_TRANSPORT,\n            \"RTP/AVP/TCP;unicast;interleaved=%\" PRIu8 \"-%\" PRIu8,\n            interleaved->rtp_channel, interleaved->rtcp_channel);\n        return 0;\n    }\n\n    smolrtsp_respond(\n        ctx, SMOLRTSP_STATUS_BAD_REQUEST, \"`interleaved' not found\");\n    return -1;\n}\n\nstatic int setup_udp(\n    const struct sockaddr *addr, SmolRTSP_Context *ctx, SmolRTSP_Transport *t,\n    SmolRTSP_TransportConfig config) {\n\n    ifLet(config.client_port, SmolRTSP_PortPair_Some, client_port) {\n        int fd;\n        if ((fd = smolrtsp_dgram_socket(\n                 addr->sa_family, smolrtsp_sockaddr_ip(addr),\n                 client_port->rtp_port)) == -1) {\n            return -1;\n        }\n\n        *t = smolrtsp_transport_udp(fd);\n\n        smolrtsp_header(\n            ctx, SMOLRTSP_HEADER_TRANSPORT,\n            \"RTP/AVP/UDP;unicast;client_port=%\" PRIu16 \"-%\" PRIu16,\n            client_port->rtp_port, client_port->rtcp_port);\n        return 0;\n    }\n\n    smolrtsp_respond(\n        ctx, SMOLRTSP_STATUS_BAD_REQUEST, \"`client_port' not found\");\n    return -1;\n}\n\nstatic void AudioCtx_drop(VSelf) {\n    VSELF(AudioCtx);\n\n    event_free(self->ev);\n    VTABLE(SmolRTSP_RtpTransport, SmolRTSP_Droppable).drop(self->transport);\n    free(self);\n}\n\nimpl(SmolRTSP_Droppable, AudioCtx);\n\nstatic SmolRTSP_Droppable play_audio(\n    struct event_base *base, struct bufferevent *bev, SmolRTSP_RtpTransport *t,\n    struct event **ev, int *streams_playing) {\n    AudioCtx *ctx = malloc(sizeof *ctx);\n    assert(ctx);\n    *ctx = (AudioCtx){\n        .transport = t,\n        .i = 0,\n        .ev = NULL,\n        .streams_playing = streams_playing,\n        .bev = bev,\n    };\n\n    ctx->ev = event_new(\n        base, -1, EV_PERSIST | EV_TIMEOUT, send_audio_packet_cb, (void *)ctx);\n    assert(ctx->ev);\n\n    event_add(\n        ctx->ev, &(const struct timeval){\n                     .tv_sec = 0,\n                     .tv_usec = AUDIO_PACKETIZATION_TIME_US,\n                 });\n    *ev = ctx->ev;\n    (*streams_playing)++;\n\n    return DYN(AudioCtx, SmolRTSP_Droppable, ctx);\n}\n\nstatic void send_audio_packet_cb(evutil_socket_t fd, short events, void *arg) {\n    (void)fd;\n    (void)events;\n\n    AudioCtx *ctx = arg;\n\n    if (ctx->i * AUDIO_SAMPLES_PER_PACKET >= ___media_audio_g711a_len) {\n        event_del(ctx->ev);\n        (*ctx->streams_playing)--;\n        if (0 == *ctx->streams_playing) {\n            bufferevent_trigger_event(ctx->bev, BEV_EVENT_EOF, 0);\n        }\n        return;\n    }\n\n    const SmolRTSP_RtpTimestamp ts =\n        SmolRTSP_RtpTimestamp_Raw(ctx->i * AUDIO_SAMPLES_PER_PACKET);\n    const bool marker = false;\n    const size_t samples_count =\n        ___media_audio_g711a_len <\n                ctx->i * AUDIO_SAMPLES_PER_PACKET + AUDIO_SAMPLES_PER_PACKET\n            ? ___media_audio_g711a_len % AUDIO_SAMPLES_PER_PACKET\n            : AUDIO_SAMPLES_PER_PACKET;\n    const U8Slice99 header = U8Slice99_empty(),\n                    payload = U8Slice99_new(\n                        ___media_audio_g711a +\n                            ctx->i * AUDIO_SAMPLES_PER_PACKET,\n                        samples_count);\n\n    if (SmolRTSP_RtpTransport_send_packet(\n            ctx->transport, ts, marker, header, payload) == -1) {\n        perror(\"Failed to send RTP/PCMU\");\n    }\n\n    ctx->i++;\n}\n\nstatic void VideoCtx_drop(VSelf) {\n    VSELF(VideoCtx);\n\n    event_free(self->ev);\n    VTABLE(SmolRTSP_NalTransport, SmolRTSP_Droppable).drop(self->transport);\n    free(self);\n}\n\nimpl(SmolRTSP_Droppable, VideoCtx);\n\nstatic SmolRTSP_Droppable play_video(\n    struct event_base *base, struct bufferevent *bev, SmolRTSP_RtpTransport *t,\n    struct event **ev, int *streams_playing) {\n    U8Slice99 video = Slice99_typed_from_array(___media_video_h264);\n\n    SmolRTSP_NalStartCodeTester start_code_tester;\n    if ((start_code_tester = smolrtsp_determine_start_code(video)) == NULL) {\n        fputs(\"Invalid video file.\\n\", stderr);\n        abort();\n    }\n\n    VideoCtx *ctx = malloc(sizeof *ctx);\n    assert(ctx);\n    *ctx = (VideoCtx){\n        .transport = SmolRTSP_NalTransport_new(t),\n        .start_code_tester = start_code_tester,\n        .timestamp = 0,\n        .video = video,\n        .nalu_start = NULL,\n        .ev = NULL,\n        .bev = bev,\n        .streams_playing = streams_playing,\n    };\n\n    ctx->ev = event_new(\n        base, -1, EV_PERSIST | EV_TIMEOUT, send_video_packet_cb, (void *)ctx);\n    assert(ctx->ev);\n\n    event_add(\n        ctx->ev, &(const struct timeval){\n                     .tv_sec = 0,\n                     .tv_usec = 1e6 / VIDEO_FPS,\n                 });\n    *ev = ctx->ev;\n    (*streams_playing)++;\n\n    return DYN(VideoCtx, SmolRTSP_Droppable, ctx);\n}\n\nstatic void send_video_packet_cb(evutil_socket_t fd, short events, void *arg) {\n    (void)fd;\n    (void)events;\n\n    VideoCtx *ctx = arg;\n\nagain:\n    if (U8Slice99_is_empty(ctx->video)) {\n        send_nalu(ctx);\n        event_del(ctx->ev);\n        (*ctx->streams_playing)--;\n        if (0 == *ctx->streams_playing) {\n            bufferevent_trigger_event(ctx->bev, BEV_EVENT_EOF, 0);\n        }\n        return;\n    }\n\n    const size_t start_code_len = ctx->start_code_tester(ctx->video);\n    if (0 == start_code_len) {\n        ctx->video = U8Slice99_advance(ctx->video, 1);\n        goto again;\n    }\n\n    bool au_found = false;\n    if (NULL != ctx->nalu_start) {\n        au_found = send_nalu(ctx);\n    }\n\n    ctx->video = U8Slice99_advance(ctx->video, start_code_len);\n    ctx->nalu_start = ctx->video.ptr;\n\n    if (!au_found) {\n        goto again;\n    }\n}\n\nstatic bool send_nalu(VideoCtx *ctx) {\n    const SmolRTSP_NalUnit nalu = {\n        .header = SmolRTSP_NalHeader_H264(\n            SmolRTSP_H264NalHeader_parse(ctx->nalu_start[0])),\n        .payload = U8Slice99_from_ptrdiff(ctx->nalu_start + 1, ctx->video.ptr),\n    };\n\n    bool au_found = false;\n\n    if (SmolRTSP_NalHeader_unit_type(nalu.header) ==\n        SMOLRTSP_H264_NAL_UNIT_AUD) {\n        ctx->timestamp += VIDEO_SAMPLE_RATE / VIDEO_FPS;\n        au_found = true;\n    }\n\n    if (SmolRTSP_NalTransport_send_packet(\n            ctx->transport, SmolRTSP_RtpTimestamp_Raw(ctx->timestamp), nalu) ==\n        -1) {\n        perror(\"Failed to send RTP/NAL\");\n    }\n\n    return au_found;\n}\n"
  },
  {
    "path": "include/smolrtsp/context.h",
    "content": "/**\n * @file\n * @brief A request context.\n */\n\n#pragma once\n\n#include <smolrtsp/droppable.h>\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/message_body.h>\n#include <smolrtsp/types/status_code.h>\n#include <smolrtsp/writer.h>\n\n#include <stdarg.h>\n#include <stdint.h>\n\n#include <interface99.h>\n#include <slice99.h>\n\n/**\n * An opaque type used to conveniently respond to RTSP clients.\n */\ntypedef struct SmolRTSP_Context SmolRTSP_Context;\n\n/**\n * Creates a new SmolRTSP context.\n *\n * @param[in] w The writer to be provided with the response.\n * @param[in] cseq The sequence number for an RTSP request/response pair.\n *\n * @pre `w.self && w.vptr`\n */\nSmolRTSP_Context *\nSmolRTSP_Context_new(SmolRTSP_Writer w, uint32_t cseq) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Retrieves the writer specified in #SmolRTSP_Context_new.\n *\n * @pre `ctx != NULL`\n */\nSmolRTSP_Writer\nSmolRTSP_Context_get_writer(const SmolRTSP_Context *ctx) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Retrieves `cseq` specified in #SmolRTSP_Context_new.\n *\n * @pre `ctx != NULL`\n */\nuint32_t\nSmolRTSP_Context_get_cseq(const SmolRTSP_Context *ctx) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Retrieves the RTSP respond return value.\n *\n * If you have not responded yet, the result is 0.\n *\n * @pre `ctx != NULL`\n */\nssize_t\nSmolRTSP_Context_get_ret(const SmolRTSP_Context *ctx) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Appends an RTSP header to the request context.\n *\n * @param[out] ctx The request context to modify.\n * @param[in] key The header key.\n * @param[in] fmt The `printf`-like format string (header value).\n * @param[in] list The variadic function arguments.\n *\n * @pre `ctx != NULL`\n * @pre @p ctx must contain strictly less than #SMOLRTSP_HEADER_MAP_CAPACITY\n * headers.\n * @pre `fmt != NULL`\n */\nvoid smolrtsp_vheader(\n    SmolRTSP_Context *ctx, CharSlice99 key, const char *restrict fmt,\n    va_list list) SMOLRTSP_PRIV_GCC_ATTR(format(printf, 3, 0));\n\n/**\n * The #smolrtsp_vheader twin.\n */\nvoid smolrtsp_header(\n    SmolRTSP_Context *ctx, CharSlice99 key, const char *restrict fmt, ...)\n    SMOLRTSP_PRIV_GCC_ATTR(format(printf, 3, 4));\n\n/**\n * Sets an RTSP body in the request context.\n *\n * @param[out] ctx The request context to modify.\n * @param[in] body The RTSP body.\n *\n * @pre `ctx != NULL`\n */\nvoid smolrtsp_body(SmolRTSP_Context *ctx, SmolRTSP_MessageBody body);\n\n/**\n * Writes an RTSP response to the underlying writer.\n *\n * The `CSeq` and `Content-Length` headers will be written automatically as\n * first headers.\n *\n * @param[out] ctx The request context to write the response to.\n * @param[in] code The RTSP status code.\n * @param[in] reason The RTSP reason phrase.\n *\n * @pre `ctx != NULL`\n * @pre @p reason is a null-terminated string.\n *\n * @return The number of bytes written or a negative value on error.\n */\nssize_t smolrtsp_respond(\n    SmolRTSP_Context *ctx, SmolRTSP_StatusCode code, const char *reason);\n\n/**\n * A shortcut for `smolrtsp_respond(ctx, SMOLRTSP_STATUS_OK, \"OK\")`.\n */\nssize_t smolrtsp_respond_ok(SmolRTSP_Context *ctx);\n\n/**\n * A shortcut for `smolrtsp_respond(ctx, SMOLRTSP_STATUS_INTERNAL_SERVER_ERROR,\n * \"Internal error\")`.\n */\nssize_t smolrtsp_respond_internal_error(SmolRTSP_Context *ctx);\n\n/**\n * Implements #SmolRTSP_Droppable_IFACE for #SmolRTSP_Context.\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\ndeclImplExtern99(SmolRTSP_Droppable, SmolRTSP_Context);\n"
  },
  {
    "path": "include/smolrtsp/controller.h",
    "content": "/**\n * @file\n * @brief An RTSP requests controller.\n */\n\n#pragma once\n\n#include <smolrtsp/context.h>\n#include <smolrtsp/droppable.h>\n#include <smolrtsp/types/request.h>\n#include <smolrtsp/writer.h>\n\n#include <stddef.h>\n\n#include <interface99.h>\n\n/**\n * Whether to stop or continue some processing.\n */\ntypedef enum {\n    /**\n     * Break processing.\n     */\n    SmolRTSP_ControlFlow_Break,\n\n    /**\n     * Continue processing.\n     */\n    SmolRTSP_ControlFlow_Continue,\n} SmolRTSP_ControlFlow;\n\n/**\n * A controller that handles incoming RTSP requests.\n *\n * All RTSP command handlers accept the following parameters:\n *  - `ctx` -- a request context used to respond to your RTSP client.\n *  - `req` -- a fully parsed request object.\n */\n#define SmolRTSP_Controller_IFACE                                              \\\n                                                                               \\\n    /*                                                                         \\\n     * Handles `OPTIONS` as defined in                                         \\\n     * <https://datatracker.ietf.org/doc/html/rfc2326#section-10.1>.           \\\n     */                                                                        \\\n    vfunc99(                                                                   \\\n        void, options, VSelf99, SmolRTSP_Context *ctx,                         \\\n        const SmolRTSP_Request *req)                                           \\\n                                                                               \\\n    /*                                                                         \\\n     * Handles `OPTIONS` as defined in                                         \\\n     * <https://datatracker.ietf.org/doc/html/rfc2326#section-10.2>.           \\\n     */                                                                        \\\n    vfunc99(                                                                   \\\n        void, describe, VSelf99, SmolRTSP_Context *ctx,                        \\\n        const SmolRTSP_Request *req)                                           \\\n                                                                               \\\n    /*                                                                         \\\n     * Handles `OPTIONS` as defined in                                         \\\n     * <https://datatracker.ietf.org/doc/html/rfc2326#section-10.4>.           \\\n     */                                                                        \\\n    vfunc99(                                                                   \\\n        void, setup, VSelf99, SmolRTSP_Context *ctx,                           \\\n        const SmolRTSP_Request *req)                                           \\\n                                                                               \\\n    /*                                                                         \\\n     * Handles `OPTIONS` as defined in                                         \\\n     * <https://datatracker.ietf.org/doc/html/rfc2326#section-10.5>.           \\\n     */                                                                        \\\n    vfunc99(                                                                   \\\n        void, play, VSelf99, SmolRTSP_Context *ctx,                            \\\n        const SmolRTSP_Request *req)                                           \\\n                                                                               \\\n    /*                                                                         \\\n     * Handles `OPTIONS` as defined in                                         \\\n     * <https://datatracker.ietf.org/doc/html/rfc2326#section-10.7>.           \\\n     */                                                                        \\\n    vfunc99(                                                                   \\\n        void, teardown, VSelf99, SmolRTSP_Context *ctx,                        \\\n        const SmolRTSP_Request *req)                                           \\\n                                                                               \\\n    /*                                                                         \\\n     * Handles a command that is neither of the above.                         \\\n     */                                                                        \\\n    vfunc99(                                                                   \\\n        void, unknown, VSelf99, SmolRTSP_Context *ctx,                         \\\n        const SmolRTSP_Request *req)                                           \\\n                                                                               \\\n    /*                                                                         \\\n     * A method that is invoked _before_ the actual request handling.          \\\n     */                                                                        \\\n    vfunc99(                                                                   \\\n        SmolRTSP_ControlFlow, before, VSelf99, SmolRTSP_Context *ctx,          \\\n        const SmolRTSP_Request *req)                                           \\\n                                                                               \\\n    /*                                                                         \\\n     * A method that is invoked _after_ request handling.                      \\\n     */                                                                        \\\n    vfunc99(                                                                   \\\n        void, after, VSelf99, ssize_t ret, SmolRTSP_Context *ctx,              \\\n        const SmolRTSP_Request *req)\n\n/**\n * The superinterfaces of #SmolRTSP_Controller_IFACE.\n */\n#define SmolRTSP_Controller_EXTENDS (SmolRTSP_Droppable)\n\n/**\n * Defines the `SmolRTSP_Controller` interface.\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\ninterface99(SmolRTSP_Controller);\n\n/**\n * Dispatches an incoming request to @p controller.\n *\n * The algorithm is as follows:\n *\n *  1. Setup a request context #SmolRTSP_Context. Later you can use it to\n * configure an RTSP response via #smolrtsp_header, #smolrtsp_body, and similar.\n *  2. Invoke the `before` method of @p controller. Here you should do some\n * preliminary stuff like logging a request or setting up initial response\n * headers via #smolrtsp_header. If `before` returns\n * #SmolRTSP_ControlFlow_Break, jump to step #4.\n *  3. Invoke a corresponding command handler of @p controller. Here you should\n * handle the request and respond to your client via\n * #smolrtsp_respond/#smolrtsp_respond_ok or similar.\n *  4. Invoke the `after` method of @p controller. Here you automatically\n * receive the return value of `smolrtsp_respond_*` (invoked during one of the\n * previous steps). If it is <0, it means that something bad happened so that\n * the handler has not been able to respond properly.\n *  5. Drop the request context.\n *\n * @param[out] conn The writer to send RTSP responses.\n * @param[in] controller The controller to handle the incoming request @p req.\n * @param[in] req The fully parsed RTSP request object.\n *\n * @pre `conn.self && conn.vptr`\n * @pre `controller.self && controller.vptr`\n * @pre `req != NULL`\n */\nvoid smolrtsp_dispatch(\n    SmolRTSP_Writer conn, SmolRTSP_Controller controller,\n    const SmolRTSP_Request *restrict req);\n"
  },
  {
    "path": "include/smolrtsp/droppable.h",
    "content": "/**\n * @file\n * @brief Droppable types support.\n */\n\n#pragma once\n\n#include <interface99.h>\n\n/**\n * Types that can be dropped (deallocated).\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\n#define SmolRTSP_Droppable_IFACE                                               \\\n                                                                               \\\n    /*                                                                         \\\n     * Deallocates itself so that it can no longer be used.                    \\\n     */                                                                        \\\n    vfunc99(void, drop, VSelf99)\n\n/**\n * Defines the `SmolRTSP_Droppable` interface.\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\ninterface99(SmolRTSP_Droppable);\n"
  },
  {
    "path": "include/smolrtsp/io_vec.h",
    "content": "/**\n * @file\n * @brief Vectored I/O support.\n */\n\n#pragma once\n\n#include <stddef.h>\n\n#include <sys/socket.h>\n#include <sys/types.h>\n\n#include <slice99.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * A slice of elements of type `struct iovec`.\n */\nSLICE99_DEF_TYPED(SmolRTSP_IoVecSlice, struct iovec);\n\n/**\n * Computes the total length of @p self.\n */\nsize_t SmolRTSP_IoVecSlice_len(SmolRTSP_IoVecSlice self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Converts an octet slice @p slice to `struct iovec`.\n */\nstruct iovec smolrtsp_slice_to_iovec(U8Slice99 slice) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/nal/h264.h",
    "content": "/**\n * @file\n * @brief [H.264](https://en.wikipedia.org/wiki/Advanced_Video_Coding) NAL\n * representation.\n *\n * @see H.264 spec: <https://www.itu.int/rec/T-REC-H.264>.\n */\n\n#pragma once\n\n#include <stdbool.h>\n#include <stdint.h>\n\n#include <slice99.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * The size of an H.264 NAL header.\n */\n#define SMOLRTSP_H264_NAL_HEADER_SIZE sizeof(uint8_t)\n\n/**\n * The size of an H.264 fragmentation unit (FU) header.\n *\n * @see <https://datatracker.ietf.org/doc/html/rfc6184#section-5.8>\n */\n#define SMOLRTSP_H264_FU_HEADER_SIZE                                           \\\n    (/* fu-identifier */ sizeof(uint8_t) + /* fu-header */ sizeof(uint8_t))\n\n/**\n * An H.264 NAL header.\n */\ntypedef struct {\n    /**\n     * `forbidden_zero_bit` f(1).\n     */\n    bool forbidden_zero_bit;\n\n    /**\n     * `nal_ref_idc` (u2).\n     */\n    uint8_t ref_idc;\n\n    /**\n     * `unit_type` u(5).\n     */\n    uint8_t unit_type;\n} SmolRTSP_H264NalHeader;\n\n/**\n * An H.264 NAL unit.\n */\ntypedef struct {\n    /**\n     * The NAL header of this NAL unit.\n     */\n    SmolRTSP_H264NalHeader header;\n\n    /**\n     * The payload data of this NAL unit (not including the header).\n     */\n    U8Slice99 payload;\n} SmolRTSP_H264NalUnit;\n\n/**\n * Parses an H.264 NAL header from @p byte_header.\n */\nSmolRTSP_H264NalHeader\nSmolRTSP_H264NalHeader_parse(uint8_t byte_header) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Converts @p self to a single octet representation.\n */\nuint8_t SmolRTSP_H264NalHeader_serialize(SmolRTSP_H264NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is VPS.\n */\nbool SmolRTSP_H264NalHeader_is_vps(SmolRTSP_H264NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is SPS.\n */\nbool SmolRTSP_H264NalHeader_is_sps(SmolRTSP_H264NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is PPS.\n */\nbool SmolRTSP_H264NalHeader_is_pps(SmolRTSP_H264NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is a coded slice IDR.\n */\nbool SmolRTSP_H264NalHeader_is_coded_slice_idr(SmolRTSP_H264NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is a coded slice non-IDR.\n */\nbool SmolRTSP_H264NalHeader_is_coded_slice_non_idr(SmolRTSP_H264NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Writes a FU header of @p self to @p buffer.\n *\n * @param[in] self The header to write.\n * @param[out] buffer The memory area capable of storing\n * #SMOLRTSP_H264_FU_HEADER_SIZE bytes.\n * @param[in] is_first_fragment The indication of a start of the FU.\n * @param[in] is_last_fragment The indication of an end of the FU.\n *\n * @see <https://datatracker.ietf.org/doc/html/rfc6184#section-5.8>\n */\nvoid SmolRTSP_H264NalHeader_write_fu_header(\n    SmolRTSP_H264NalHeader self, uint8_t buffer[restrict],\n    bool is_first_fragment, bool is_last_fragment);\n\n/**\n * Unspecified.\n */\n#define SMOLRTSP_H264_NAL_UNIT_UNSPECIFIED 0\n\n/**\n * Coded slice of a non-IDR picture.\n */\n#define SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_NON_IDR 1\n\n/**\n * Coded slice data partition A.\n */\n#define SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_DATA_PARTITION_A 2\n\n/**\n * Coded slice data partition B.\n */\n#define SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_DATA_PARTITION_B 3\n\n/**\n * Coded slice data partition C.\n */\n#define SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_DATA_PARTITION_C 4\n\n/**\n * Coded slice of an IDR picture.\n */\n#define SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_IDR 5\n\n/**\n * Supplemental enhancement information (SEI).\n */\n#define SMOLRTSP_H264_NAL_UNIT_SEI 6\n\n/**\n * Sequence parameter set.\n */\n#define SMOLRTSP_H264_NAL_UNIT_SPS 7\n\n/**\n * Picture parameter set.\n */\n#define SMOLRTSP_H264_NAL_UNIT_PPS 8\n\n/**\n * Access unit delimiter.\n */\n#define SMOLRTSP_H264_NAL_UNIT_AUD 9\n\n/**\n * End of sequence.\n */\n#define SMOLRTSP_H264_NAL_UNIT_END_OF_SEQUENCE 10\n\n/**\n * End of stream.\n */\n#define SMOLRTSP_H264_NAL_UNIT_END_OF_STREAM 11\n\n/**\n * Filler data.\n */\n#define SMOLRTSP_H264_NAL_UNIT_FILLER 12\n\n/**\n * Sequence parameter set extension.\n */\n#define SMOLRTSP_H264_NAL_UNIT_SPS_EXT 13\n\n/**\n * Prefix NAL unit.\n */\n#define SMOLRTSP_H264_NAL_UNIT_PREFIX 14\n\n/**\n * Subset sequence parameter set.\n */\n#define SMOLRTSP_H264_NAL_UNIT_SUBSET_SPS 15\n\n/**\n * Depth parameter set.\n */\n#define SMOLRTSP_H264_NAL_UNIT_DPS 16\n\n/**\n * Coded slice of an auxiliary coded picture without partitioning.\n */\n#define SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_AUX 19\n\n/**\n * Coded slice extension.\n */\n#define SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_EXT 20\n\n/**\n * Coded slice extension for a depth view component or a 3D-AVC texture view\n * component.\n */\n#define SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_EXT_DEPTH_VIEW 21\n"
  },
  {
    "path": "include/smolrtsp/nal/h265.h",
    "content": "/**\n * @file\n * @brief [H.265](https://en.wikipedia.org/wiki/High_Efficiency_Video_Coding)\n * NAL representation.\n *\n * @see H.265 spec: <https://www.itu.int/rec/T-REC-H.265>.\n */\n\n#pragma once\n\n#include <stdbool.h>\n\n#include <slice99.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * The size of an H.265 NAL header.\n */\n#define SMOLRTSP_H265_NAL_HEADER_SIZE sizeof(uint16_t)\n\n/**\n * The size of an H.265 fragmentation unit (FU) header.\n *\n * @see <https://datatracker.ietf.org/doc/html/rfc7798#section-4.4.3>\n */\n#define SMOLRTSP_H265_FU_HEADER_SIZE                                           \\\n    (/* payload-hdr */ sizeof(uint16_t) + /* fu-header */ sizeof(uint8_t))\n\n/**\n * An H.265 NAL header.\n */\ntypedef struct {\n    /**\n     * `forbidden_zero_bit` f(1).\n     */\n    bool forbidden_zero_bit;\n\n    /**\n     * `unit_type` u(6).\n     */\n    uint8_t unit_type;\n\n    /**\n     * `nuh_layer_id` u(6).\n     */\n    uint8_t nuh_layer_id;\n\n    /**\n     * `nuh_temporal_id_plus1` u(3).\n     */\n    uint8_t nuh_temporal_id_plus1;\n} SmolRTSP_H265NalHeader;\n\n/**\n * An H.265 NAL unit.\n */\ntypedef struct {\n    /**\n     * The NAL header of this NAL unit.\n     */\n    SmolRTSP_H265NalHeader header;\n\n    /**\n     * The payload data of this NAL unit (not including the header).\n     */\n    U8Slice99 payload;\n} SmolRTSP_H265NalUnit;\n\n/**\n * Parses an H.265 NAL header from @p byte_header.\n */\nSmolRTSP_H265NalHeader SmolRTSP_H265NalHeader_parse(\n    uint8_t bytes[restrict static 2]) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Converts @p self to a two-octet representation.\n */\nuint16_t SmolRTSP_H265NalHeader_serialize(SmolRTSP_H265NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is VPS.\n */\nbool SmolRTSP_H265NalHeader_is_vps(SmolRTSP_H265NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is SPS.\n */\nbool SmolRTSP_H265NalHeader_is_sps(SmolRTSP_H265NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is PPS.\n */\nbool SmolRTSP_H265NalHeader_is_pps(SmolRTSP_H265NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is a coded slice IDR.\n */\nbool SmolRTSP_H265NalHeader_is_coded_slice_idr(SmolRTSP_H265NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is a coded slice non-IDR.\n */\nbool SmolRTSP_H265NalHeader_is_coded_slice_non_idr(SmolRTSP_H265NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Writes a FU header of @p self to @p buffer.\n *\n * @param[in] self The header to write.\n * @param[out] buffer The memory area capable of storing\n * #SMOLRTSP_H265_FU_HEADER_SIZE bytes.\n * @param[in] is_first_fragment The indication of a start of the FU.\n * @param[in] is_last_fragment The indication of an end of the FU.\n *\n * @see <https://datatracker.ietf.org/doc/html/rfc7798#section-4.4.3>\n */\nvoid SmolRTSP_H265NalHeader_write_fu_header(\n    SmolRTSP_H265NalHeader self, uint8_t buffer[restrict],\n    bool is_first_fragment, bool is_last_fragment);\n\n/**\n * Coded slice segment of a non-TSA, non-STSA trailing picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_TRAIL_N 0\n\n/**\n * Coded slice segment of a non-TSA, non-STSA trailing picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_TRAIL_R 1\n\n/**\n * Coded slice segment of a TSA picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_TSA_N 2\n\n/**\n * Coded slice segment of a TSA picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_TSA_R 3\n\n/**\n * Coded slice segment of an STSA picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_STSA_N 4\n\n/**\n * Coded slice segment of an STSA picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_STSA_R 5\n\n/**\n * Coded slice segment of a RADL picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_RADL_N 6\n\n/**\n * Coded slice segment of a RADL picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_RADL_R 7\n\n/**\n * Coded slice segment of a RASL picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_RASL_N 8\n\n/**\n * Coded slice segment of a RASL picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_RASL_R 9\n\n/**\n * Coded slice segment of a BLA picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_BLA_W_LP 16\n\n/**\n * Coded slice segment of a BLA picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_BLA_W_RADL 17\n\n/**\n * Coded slice segment of a BLA picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_BLA_N_LP 18\n\n/**\n * Coded slice segment of an IDR picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_IDR_W_RADL 19\n\n/**\n * Coded slice segment of an IDR picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_IDR_N_LP 20\n\n/**\n * Coded slice segment of a CRA picture.\n */\n#define SMOLRTSP_H265_NAL_UNIT_CRA_NUT 21\n\n/**\n * Video parameter set.\n */\n#define SMOLRTSP_H265_NAL_UNIT_VPS_NUT 32\n\n/**\n * Sequence parameter set.\n */\n#define SMOLRTSP_H265_NAL_UNIT_SPS_NUT 33\n\n/**\n * Picture parameter set.\n */\n#define SMOLRTSP_H265_NAL_UNIT_PPS_NUT 34\n\n/**\n * Access unit delimiter.\n */\n#define SMOLRTSP_H265_NAL_UNIT_AUD_NUT 35\n\n/**\n * End of sequence.\n */\n#define SMOLRTSP_H265_NAL_UNIT_EOS_NUT 36\n\n/**\n * End of bitstream.\n */\n#define SMOLRTSP_H265_NAL_UNIT_EOB_NUT 37\n\n/**\n * Filler data.\n */\n#define SMOLRTSP_H265_NAL_UNIT_FD_NUT 38\n\n/**\n * Supplemental enhancement information.\n */\n#define SMOLRTSP_H265_NAL_UNIT_PREFIX_SEI_NUT 39\n\n/**\n * Supplemental enhancement information.\n */\n#define SMOLRTSP_H265_NAL_UNIT_SUFFIX_SEI_NUT 40\n"
  },
  {
    "path": "include/smolrtsp/nal.h",
    "content": "/**\n * @file\n * @brief A generic [NAL (Network Abstraction\n * Layer)](https://en.wikipedia.org/wiki/Network_Abstraction_Layer)\n * representation.\n */\n\n#pragma once\n\n#include <smolrtsp/nal/h264.h>\n#include <smolrtsp/nal/h265.h>\n\n#include <stdbool.h>\n#include <stdint.h>\n\n#include <datatype99.h>\n#include <slice99.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * A generic NAL header (either H.264 or H.265).\n *\n * See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.\n */\n\n// clang-format off\ndatatype99(\n    SmolRTSP_NalHeader,\n    (SmolRTSP_NalHeader_H264, SmolRTSP_H264NalHeader),\n    (SmolRTSP_NalHeader_H265, SmolRTSP_H265NalHeader)\n);\n// clang-format on\n\n/**\n * Returns the NAL unit type of @p self.\n */\nuint8_t\nSmolRTSP_NalHeader_unit_type(SmolRTSP_NalHeader self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Computes the size of @p self in bytes.\n */\nsize_t SmolRTSP_NalHeader_size(SmolRTSP_NalHeader self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Computes the size of a fragmentation unit (FU) header @p self.\n *\n * @see H.264 Fragmentation Units (FUs):\n * <https://datatracker.ietf.org/doc/html/rfc6184#section-5.8>\n * @see H.265 Fragmentation Units (FUs):\n * <https://datatracker.ietf.org/doc/html/rfc7798#section-4.4.3>\n */\nsize_t\nSmolRTSP_NalHeader_fu_size(SmolRTSP_NalHeader self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is VPS.\n */\nbool SmolRTSP_NalHeader_is_vps(SmolRTSP_NalHeader self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is SPS.\n */\nbool SmolRTSP_NalHeader_is_sps(SmolRTSP_NalHeader self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is PPS.\n */\nbool SmolRTSP_NalHeader_is_pps(SmolRTSP_NalHeader self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is a coded slice IDR.\n */\nbool SmolRTSP_NalHeader_is_coded_slice_idr(SmolRTSP_NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Checks whether @p self is a coded slice non-IDR.\n */\nbool SmolRTSP_NalHeader_is_coded_slice_non_idr(SmolRTSP_NalHeader self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Writes the binary representation of @p self into @p buffer.\n *\n * @param[in] self The header to write.\n * @param[out] buffer The memory area capable of storing\n * `SmolRTSP_NalHeader_size(self)` bytes.\n */\nvoid SmolRTSP_NalHeader_serialize(\n    SmolRTSP_NalHeader self, uint8_t buffer[restrict]);\n\n/**\n * Writes a FU header of @p self to @p buffer.\n *\n * @param[in] self The header to write.\n * @param[out] buffer The memory area capable of storing\n * `SmolRTSP_NalHeader_fu_size(self)` bytes.\n * @param[in] is_first_fragment The indication of a start of the FU.\n * @param[in] is_last_fragment The indication of an end of the FU.\n *\n * @see H.264 Fragmentation Units (FUs):\n * <https://datatracker.ietf.org/doc/html/rfc6184#section-5.8>\n * @see H.265 Fragmentation Units (FUs):\n * <https://datatracker.ietf.org/doc/html/rfc7798#section-4.4.3>\n */\nvoid SmolRTSP_NalHeader_write_fu_header(\n    SmolRTSP_NalHeader self, uint8_t buffer[restrict], bool is_first_fragment,\n    bool is_last_fragment);\n\n/**\n * A generic NAL unit (either H.264 or H.265).\n */\ntypedef struct {\n    /**\n     * The header of this NAL unit.\n     */\n    SmolRTSP_NalHeader header;\n\n    /**\n     * The payload data of this NAL unit (not including the header).\n     */\n    U8Slice99 payload;\n} SmolRTSP_NalUnit;\n\n/**\n * Creates a generic NAL FU header.\n */\nuint8_t smolrtsp_nal_fu_header(\n    bool is_first_fragment, bool is_last_fragment,\n    uint8_t unit_type) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * A function that tests whether @p data starts with some start code.\n *\n * @return The number of start code bytes. If there is no start code in the\n * beginning of @p data, returns 0.\n *\n * @see #smolrtsp_test_start_code_3b\n * @see #smolrtsp_test_start_code_4b\n */\ntypedef size_t (*SmolRTSP_NalStartCodeTester)(U8Slice99 data);\n\n/**\n * Returns a start code tester for @p data.\n *\n * If @p data does not begin with a start code (either `0x000001` or\n * `0x00000001`), returns `NULL`.\n *\n * This function is useful when you have some `*.h264` bitstream file and you\n * want to determine what start code it uses -- just pass the beginning of this\n * file to #smolrtsp_determine_start_code and invoke the returned tester\n * multiple times afterwards.\n */\nSmolRTSP_NalStartCodeTester\nsmolrtsp_determine_start_code(U8Slice99 data) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * The 3-byte start code tester (`0x000001`).\n */\nsize_t smolrtsp_test_start_code_3b(U8Slice99 data);\n\n/**\n * The 3-byte start code tester (`0x00000001`).\n */\nsize_t smolrtsp_test_start_code_4b(U8Slice99 data);\n"
  },
  {
    "path": "include/smolrtsp/nal_transport.h",
    "content": "/**\n * @file\n * @brief An RTP/NAL data transport.\n *\n * @see RTP Payload Format for H.264 Video:\n * <https://datatracker.ietf.org/doc/html/rfc6184>\n * @see RTP Payload Format for High Efficiency Video Coding (HEVC):\n * <https://datatracker.ietf.org/doc/html/rfc7798>\n */\n\n#pragma once\n\n#include <smolrtsp/droppable.h>\n#include <smolrtsp/nal.h>\n#include <smolrtsp/rtp_transport.h>\n\n#include <stddef.h>\n#include <stdint.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * The default value for #SmolRTSP_NalTransportConfig.max_h264_nalu_size.\n */\n#define SMOLRTSP_MAX_H264_NALU_SIZE 1200\n\n/**\n * The default value for #SmolRTSP_NalTransportConfig.max_h265_nalu_size.\n */\n#define SMOLRTSP_MAX_H265_NALU_SIZE 1200\n\n/**\n * The configuration structure for #SmolRTSP_NalTransport.\n */\ntypedef struct {\n    /**\n     * The maximum size of an H.264 NAL unit (including the header).\n     */\n    size_t max_h264_nalu_size;\n\n    /**\n     * The maximum size of an H.265 NAL unit (including the header).\n     */\n    size_t max_h265_nalu_size;\n} SmolRTSP_NalTransportConfig;\n\n/**\n * Returns the default #SmolRTSP_NalTransportConfig.\n *\n * The default values are:\n *\n *  - `max_h264_nalu_size` is #SMOLRTSP_MAX_H264_NALU_SIZE.\n *  - `max_h265_nalu_size` is #SMOLRTSP_MAX_H265_NALU_SIZE.\n */\nSmolRTSP_NalTransportConfig\nSmolRTSP_NalTransportConfig_default(void) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * An RTP/NAL data transport.\n */\ntypedef struct SmolRTSP_NalTransport SmolRTSP_NalTransport;\n\n/**\n * Creates a new RTP/NAL transport with the default configuration.\n *\n * @param[in] t The underlying RTP transport.\n *\n * @pre `t != NULL`\n */\nSmolRTSP_NalTransport *\nSmolRTSP_NalTransport_new(SmolRTSP_RtpTransport *t) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Creates a new RTP/NAL transport with a custom configuration.\n *\n * @param[in] t The underlying RTP transport.\n * @param[in] config The transmission configuration structure.\n *\n * @pre `t != NULL`\n */\nSmolRTSP_NalTransport *SmolRTSP_NalTransport_new_with_config(\n    SmolRTSP_RtpTransport *t,\n    SmolRTSP_NalTransportConfig config) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Sends an RTP/NAL packet.\n *\n * If @p nalu is larger than the limit values from #SmolRTSP_NalTransportConfig\n * (configured via #SmolRTSP_NalTransport_new),\n * @p nalu will be\n * [fragmented](https://datatracker.ietf.org/doc/html/rfc6184#section-5.8).\n *\n * @param[out] self The RTP/NAL transport for sending this packet.\n * @param[in] ts The RTP timestamp for this packet.\n * @param[in] nalu The NAL unit of this RTP packet.\n *\n * @pre `self != NULL`\n *\n * @return -1 if an I/O error occurred and sets `errno` appropriately, 0 on\n * success.\n */\nint SmolRTSP_NalTransport_send_packet(\n    SmolRTSP_NalTransport *self, SmolRTSP_RtpTimestamp ts,\n    SmolRTSP_NalUnit nalu) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Implements #SmolRTSP_Droppable_IFACE for #SmolRTSP_NalTransport.\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\ndeclImplExtern99(SmolRTSP_Droppable, SmolRTSP_NalTransport);\n\nbool SmolRTSP_NalTransport_is_full(SmolRTSP_NalTransport *self);\n"
  },
  {
    "path": "include/smolrtsp/option.h",
    "content": "/**\n * @file\n * @brief Optional values.\n */\n\n#pragma once\n\n#include <datatype99.h>\n#include <metalang99.h>\n\n/**\n * Defines a typed optional value.\n *\n *  - `SMOLRTSP_DEF_OPTION(T)` expands to `datatype99(T##Option, (T##_Some, T),\n * (T##_None))`.\n *  - `SMOLRTSP_DEF_OPTION(name, T)` expands to `datatype99(name##Option,\n * (name##_Some, T), (name##_None))`.\n *\n * See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.\n */\n#define SMOLRTSP_DEF_OPTION(...)                                               \\\n    ML99_OVERLOAD(SMOLRTSP_PRIV_DEF_OPTION_, __VA_ARGS__)\n\n#ifndef DOXYGEN_IGNORE\n\n#define SMOLRTSP_PRIV_DEF_OPTION_1(T)                                          \\\n    datatype99(T##Option, (T##_Some, T), (T##_None))\n#define SMOLRTSP_PRIV_DEF_OPTION_2(name, T)                                    \\\n    datatype99(name##Option, (name##_Some, T), (name##_None))\n\n#endif // DOXYGEN_IGNORE\n"
  },
  {
    "path": "include/smolrtsp/priv/compiler_attrs.h",
    "content": "#pragma once\n\n#ifdef __GNUC__\n#define SMOLRTSP_PRIV_GNUC_ATTR(attr) __attribute__((attr))\n#else\n#define SMOLRTSP_PRIV_GNUC_ATTR(_attr)\n#endif\n\n#if defined(__GNUC__) && !defined(__clang__)\n#define SMOLRTSP_PRIV_GCC_ATTR(attr) __attribute__((attr))\n#else\n#define SMOLRTSP_PRIV_GCC_ATTR(_attr)\n#endif\n\n#define SMOLRTSP_PRIV_MUST_USE SMOLRTSP_PRIV_GNUC_ATTR(warn_unused_result)\n"
  },
  {
    "path": "include/smolrtsp/rtp_transport.h",
    "content": "/**\n * @file\n * @brief An RTP data transport.\n */\n\n#pragma once\n\n#include <smolrtsp/droppable.h>\n#include <smolrtsp/transport.h>\n\n#include <stdbool.h>\n#include <stdint.h>\n\n#include <datatype99.h>\n#include <slice99.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * An RTP data transport.\n */\ntypedef struct SmolRTSP_RtpTransport SmolRTSP_RtpTransport;\n\n/**\n * An RTP timestamp.\n *\n * ## Variants\n *\n *  - `Raw` -- The value to be assigned to #SmolRTSP_RtpHeader.timestamp without\n * further conversion.\n *  - `SysClockUs` -- The timestamp value in microseconds derived from a system\n * clock (e.g., `clock_gettime`). It should be used when a raw timestamp cannot\n * be computed, as typically occurs with real-time video.\n *\n * See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.\n */\n\n// clang-format off\ndatatype99(\n    SmolRTSP_RtpTimestamp,\n    (SmolRTSP_RtpTimestamp_Raw, uint32_t),\n    (SmolRTSP_RtpTimestamp_SysClockUs, uint64_t)\n);\n// clang-format on\n\n/**\n * Creates a new RTP transport from the underlying level-4 protocol @p t.\n *\n * @param[in] t The level-4 protocol (such as TCP or UDP).\n * @param[in] payload_ty The RTP payload type. The list of payload types is\n * available here: <https://en.wikipedia.org/wiki/RTP_payload_formats>.\n * @param[in] clock_rate The RTP clock rate of @p payload_ty (HZ).\n *\n * @pre `t.self && t.vptr`\n * @pre The `rand` PRNG must be set up via `srand`.\n */\nSmolRTSP_RtpTransport *SmolRTSP_RtpTransport_new(\n    SmolRTSP_Transport t, uint8_t payload_ty,\n    uint32_t clock_rate) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Sends an RTP packet.\n *\n * @param[out] self The RTP transport for sending this packet.\n * @param[in] ts The RTP timestamp for this packet.\n * @param[in] marker The RTP marker flag.\n * @param[in] payload_header The payload header. Can be `U8Slice99_empty()`.\n * @param[in] payload The payload data.\n *\n * @pre `self != NULL`\n *\n * @return -1 if an I/O error occurred and sets `errno` appropriately, 0 on\n * success.\n */\nint SmolRTSP_RtpTransport_send_packet(\n    SmolRTSP_RtpTransport *self, SmolRTSP_RtpTimestamp ts, bool marker,\n    U8Slice99 payload_header, U8Slice99 payload) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Implements #SmolRTSP_Droppable_IFACE for #SmolRTSP_RtpTransport.\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\ndeclImplExtern99(SmolRTSP_Droppable, SmolRTSP_RtpTransport);\n\nbool SmolRTSP_RtpTransport_is_full(SmolRTSP_RtpTransport *self);\n"
  },
  {
    "path": "include/smolrtsp/transport.h",
    "content": "/**\n * @file\n * @brief RTSP data transport (level 4) implementations.\n */\n\n#pragma once\n\n#include <smolrtsp/droppable.h>\n#include <smolrtsp/io_vec.h>\n#include <smolrtsp/writer.h>\n\n#include <interface99.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * A transport-level RTSP data transmitter.\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\n#define SmolRTSP_Transport_IFACE                                               \\\n                                                                               \\\n    /*                                                                         \\\n     * Transmits a slice of I/O vectors @p bufs.                               \\\n     *                                                                         \\\n     * @return -1 if an I/O error occurred and sets `errno` appropriately, 0   \\\n     * on success.                                                             \\\n     */                                                                        \\\n    vfunc99(int, transmit, VSelf99, SmolRTSP_IoVecSlice bufs)                  \\\n    vfunc99(bool, is_full, VSelf99)\n\n/**\n * The superinterfaces of #SmolRTSP_Transport_IFACE.\n */\n#define SmolRTSP_Transport_EXTENDS (SmolRTSP_Droppable)\n\n/**\n * Defines the `SmolRTSP_Transport` interface.\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\ninterface99(SmolRTSP_Transport);\n\n/**\n * Creates a new TCP transport.\n *\n * @param[in] w The writer to be provided with data.\n * @param[in] channel_id A one-byte channel identifier, as defined in\n * <https://datatracker.ietf.org/doc/html/rfc2326#section-10.12>.\n *\n * @pre `w.self && w.vptr`\n */\nSmolRTSP_Transport smolrtsp_transport_tcp(\n    SmolRTSP_Writer w, uint8_t channel_id,\n    size_t max_buffer) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Creates a new UDP transport.\n *\n * Strictly speaking, it can handle any datagram-oriented protocol, not\n * necessarily UDP. E.g., you may use a `SOCK_SEQPACKET` socket for local\n * communication.\n *\n * @param[in] fd The socket file descriptor to be provided with data.\n *\n * @pre `fd >= 0`\n */\nSmolRTSP_Transport smolrtsp_transport_udp(int fd) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Creates a new UDP transport with address.\n *\n * @param[in] fd The socket file descriptor to be provided with data.\n * @param[in] addr Pointer to address data (e.g., sockaddr_un or sockaddr_in).\n * @param[in] len Length of the address in bytes.\n *\n * @pre `fd >= 0`\n * @pre `addr && len > 0`\n */\nSmolRTSP_Transport smolrtsp_transport_udp_address(\n    int fd, void *addr, size_t len) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Creates a new datagram socket suitable for #smolrtsp_transport_udp.\n *\n * The algorithm is:\n *  1. Create a socket using `socket(af, SOCK_DGRAM, 0)`.\n *  2. Connect this socket to @p addr with @p port.\n *  3. Set the `IP_PMTUDISC_WANT` option to allow IP fragmentation.\n *\n * @param[in] af The socket namespace. Can be `AF_INET` or `AF_INET6`; if none\n * of them, returns -1 and sets `errno` to `EAFNOSUPPORT`.\n * @param[in] addr The destination IP address: `struct in_addr` for `AF_INET`\n * and `struct in6_addr` for `AF_INET6`.\n * @param[in] port The destination IP port in the host byte order.\n *\n * @return A valid file descriptor or -1 on error (and sets `errno`\n * appropriately).\n */\nint smolrtsp_dgram_socket(int af, const void *restrict addr, uint16_t port)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Returns a pointer to the IP address of @p addr.\n *\n * Currently, only `AF_INET` and `AF_INET6` are supported. Otherwise, `NULL` is\n * returned.\n *\n * @pre `addr != NULL`\n */\nvoid *smolrtsp_sockaddr_ip(const struct sockaddr *restrict addr)\n    SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/error.h",
    "content": "/**\n * @file\n * @brief Possible parsing errors.\n */\n\n#pragma once\n\n#include <smolrtsp/writer.h>\n\n#include <stdbool.h>\n#include <stddef.h>\n\n#include <datatype99.h>\n#include <slice99.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * Types of data that can be failed to parse.\n */\ntypedef enum {\n    /**\n     * An integer (`-34`, `0`, `123`).\n     */\n    SmolRTSP_ParseType_Int,\n\n    /**\n     * An identifier (`abc`).\n     */\n    SmolRTSP_ParseType_Ident,\n\n    /**\n     * A header name (`Content-Length`, `Authorization`).\n     */\n    SmolRTSP_ParseType_HeaderName,\n} SmolRTSP_ParseType;\n\n/**\n * Returns a string representation of @p self.\n */\nconst char *\nSmolRTSP_ParseType_str(SmolRTSP_ParseType self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * An error that might occur during parsing.\n *\n * ## Variants\n *\n *  - `ContentLength` -- An invalid value of the `Content-Length` header was\n * specified. Arguments:\n *    1. The value of this header.\n *  - `StrMismatch` -- Two given strings are uneqal. Arguments:\n *    1. Expected string.\n *    2. Actual string.\n *  - `TypeMismatch` -- Failed to parse an item. Arguments:\n *    1. A type of item failed to parse.\n *    2. The erroneous string.\n *  - `HeaderMapOverflow` -- An attempt to add a header to a full header map.\n *  - `MissingCSeq` -- Missing the `CSeq` header.\n *  - `InvalidCSeq` -- Failed to parse the `CSeq` header.\n *\n * See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.\n */\n\n// clang-format off\ndatatype99(\n    SmolRTSP_ParseError,\n    (SmolRTSP_ParseError_ContentLength, CharSlice99),\n    (SmolRTSP_ParseError_StrMismatch, CharSlice99, CharSlice99),\n    (SmolRTSP_ParseError_TypeMismatch, SmolRTSP_ParseType, CharSlice99),\n    (SmolRTSP_ParseError_HeaderMapOverflow),\n    (SmolRTSP_ParseError_MissingCSeq),\n    (SmolRTSP_ParseError_InvalidCSeq, CharSlice99)\n);\n// clang-format on\n\n/**\n * Prints @p self into @p w.\n *\n * @param[in] self The error to print.\n * @param[in] w The writer to be provided with data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `w.self && w.vptr`\n */\nint SmolRTSP_ParseError_print(SmolRTSP_ParseError self, SmolRTSP_Writer w)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * A status of successful parsing.\n *\n * ## Variants\n *\n *  - `Complete` -- The parsing has completed. Arguments:\n *    1. A number of consumed bytes from the beginning of input.\n *  - `Partial` -- Need more data to continue parsing.\n *\n * See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.\n */\n\n// clang-format off\ndatatype99(\n    SmolRTSP_ParseStatus,\n    (SmolRTSP_ParseStatus_Complete, size_t),\n    (SmolRTSP_ParseStatus_Partial)\n);\n// clang-format on\n\n/**\n * Returns whether @p self is complete.\n */\nbool SmolRTSP_ParseStatus_is_complete(SmolRTSP_ParseStatus self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Returns whether @p self is partial.\n */\nbool SmolRTSP_ParseStatus_is_partial(SmolRTSP_ParseStatus self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * A result of parsing (either success or failure).\n *\n * See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.\n */\n\n// clang-format off\ndatatype99(\n    SmolRTSP_ParseResult,\n    (SmolRTSP_ParseResult_Success, SmolRTSP_ParseStatus),\n    (SmolRTSP_ParseResult_Failure, SmolRTSP_ParseError)\n);\n// clang-format on\n\n/**\n * Creates a **successful** and **partial** parse result.\n */\nSmolRTSP_ParseResult SmolRTSP_ParseResult_partial(void) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Creates a **successful** and **complete** parse result with the byte offset\n * @p offset (from the beginning of input).\n */\nSmolRTSP_ParseResult\nSmolRTSP_ParseResult_complete(size_t offset) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Returns whether @p self is successful.\n */\nbool SmolRTSP_ParseResult_is_success(SmolRTSP_ParseResult self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Returns whether @p self is a failure.\n */\nbool SmolRTSP_ParseResult_is_failure(SmolRTSP_ParseResult self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Returns whether @p self is both **successful** and **partial**.\n */\nbool SmolRTSP_ParseResult_is_partial(SmolRTSP_ParseResult self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * The same as #SmolRTSP_ParseResult_is_partial but for a complete result.\n */\nbool SmolRTSP_ParseResult_is_complete(SmolRTSP_ParseResult self)\n    SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/header.h",
    "content": "/**\n * @file\n * @brief An RTSP header.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/writer.h>\n\n#include <stdbool.h>\n#include <stdio.h>\n\n#include <unistd.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP header.\n */\ntypedef struct {\n    /**\n     * The key of this header.\n     */\n    CharSlice99 key;\n\n    /**\n     * The value of this header.\n     */\n    CharSlice99 value;\n} SmolRTSP_Header;\n\n/**\n * Serialises @p self into @p w.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_Header_serialize(\n    const SmolRTSP_Header *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_Header_parse(\n    SmolRTSP_Header *restrict self, CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_Header_eq(\n    const SmolRTSP_Header *restrict lhs,\n    const SmolRTSP_Header *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * `Accept`.\n */\n#define SMOLRTSP_HEADER_ACCEPT (CharSlice99_from_str(\"Accept\"))\n\n/**\n * `Accept-Encoding`.\n */\n#define SMOLRTSP_HEADER_ACCEPT_ENCODING                                        \\\n    (CharSlice99_from_str(\"Accept-Encoding\"))\n\n/**\n * `Accept-Language`.\n */\n#define SMOLRTSP_HEADER_ACCEPT_LANGUAGE                                        \\\n    (CharSlice99_from_str(\"Accept-Language\"))\n\n/**\n * `Allow`.\n */\n#define SMOLRTSP_HEADER_ALLOW (CharSlice99_from_str(\"Allow\"))\n\n/**\n * `Authorization`.\n */\n#define SMOLRTSP_HEADER_AUTHORIZATION (CharSlice99_from_str(\"Authorization\"))\n\n/**\n * `Bandwidth`.\n */\n#define SMOLRTSP_HEADER_BANDWIDTH (CharSlice99_from_str(\"Bandwidth\"))\n\n/**\n * `Blocksize`.\n */\n#define SMOLRTSP_HEADER_BLOCKSIZE (CharSlice99_from_str(\"Blocksize\"))\n\n/**\n * `Cache-Control`.\n */\n#define SMOLRTSP_HEADER_CACHE_CONTROL (CharSlice99_from_str(\"Cache-Control\"))\n\n/**\n * `Conference`.\n */\n#define SMOLRTSP_HEADER_CONFERENCE (CharSlice99_from_str(\"Conference\"))\n\n/**\n * `Connection`.\n */\n#define SMOLRTSP_HEADER_CONNECTION (CharSlice99_from_str(\"Connection\"))\n\n/**\n * `Content-Base`.\n */\n#define SMOLRTSP_HEADER_CONTENT_BASE (CharSlice99_from_str(\"Content-Base\"))\n\n/**\n * `Content-Encoding`.\n */\n#define SMOLRTSP_HEADER_CONTENT_ENCODING                                       \\\n    (CharSlice99_from_str(\"Content-Encoding\"))\n\n/**\n * `Content-Language`.\n */\n#define SMOLRTSP_HEADER_CONTENT_LANGUAGE                                       \\\n    (CharSlice99_from_str(\"Content-Language\"))\n\n/**\n * `Content-Length`.\n */\n#define SMOLRTSP_HEADER_CONTENT_LENGTH (CharSlice99_from_str(\"Content-Length\"))\n\n/**\n * `Content-Location\"`.\n */\n#define SMOLRTSP_HEADER_CONTENT_LOCATION                                       \\\n    (CharSlice99_from_str(\"Content-Location\"))\n\n/**\n * `Content-Type`.\n */\n#define SMOLRTSP_HEADER_CONTENT_TYPE (CharSlice99_from_str(\"Content-Type\"))\n\n/**\n * `CSeq`.\n */\n#define SMOLRTSP_HEADER_C_SEQ (CharSlice99_from_str(\"CSeq\"))\n\n/**\n * `Date`.\n */\n#define SMOLRTSP_HEADER_DATE (CharSlice99_from_str(\"Date\"))\n\n/**\n * `Expires`.\n */\n#define SMOLRTSP_HEADER_EXPIRES (CharSlice99_from_str(\"Expires\"))\n\n/**\n * `From`.\n */\n#define SMOLRTSP_HEADER_FROM (CharSlice99_from_str(\"From\"))\n\n/**\n * `If-Modified-Since`.\n */\n#define SMOLRTSP_HEADER_IF_MODIFIED_SINCE                                      \\\n    (CharSlice99_from_str(\"If-Modified-Since\"))\n\n/**\n * `\"Last-Modified`.\n */\n#define SMOLRTSP_HEADER_LAST_MODIFIED (CharSlice99_from_str(\"Last-Modified\"))\n\n/**\n * `Proxy-Authenticate`.\n */\n#define SMOLRTSP_HEADER_PROXY_AUTHENTICATE                                     \\\n    (CharSlice99_from_str(\"Proxy-Authenticate\"))\n\n/**\n * `Proxy-Require`.\n */\n#define SMOLRTSP_HEADER_PROXY_REQUIRE (CharSlice99_from_str(\"Proxy-Require\"))\n\n/**\n * `Public`.\n */\n#define SMOLRTSP_HEADER_PUBLIC (CharSlice99_from_str(\"Public\"))\n\n/**\n * `Range`.\n */\n#define SMOLRTSP_HEADER_RANGE (CharSlice99_from_str(\"Range\"))\n\n/**\n * `Referrer`.\n */\n#define SMOLRTSP_HEADER_REFERER (CharSlice99_from_str(\"Referrer\"))\n\n/**\n * `Require`.\n */\n#define SMOLRTSP_HEADER_REQUIRE (CharSlice99_from_str(\"Require\"))\n\n/**\n * `Retry-After`.\n */\n#define SMOLRTSP_HEADER_RETRY_AFTER (CharSlice99_from_str(\"Retry-After\"))\n\n/**\n * `RTP-Info`.\n */\n#define SMOLRTSP_HEADER_RTP_INFO (CharSlice99_from_str(\"RTP-Info\"))\n\n/**\n * `Scale`.\n */\n#define SMOLRTSP_HEADER_SCALE (CharSlice99_from_str(\"Scale\"))\n\n/**\n * `Session`.\n */\n#define SMOLRTSP_HEADER_SESSION (CharSlice99_from_str(\"Session\"))\n\n/**\n * `Server`.\n */\n#define SMOLRTSP_HEADER_SERVER (CharSlice99_from_str(\"Server\"))\n\n/**\n * `Speed`.\n */\n#define SMOLRTSP_HEADER_SPEED (CharSlice99_from_str(\"Speed\"))\n\n/**\n * `Transport`.\n */\n#define SMOLRTSP_HEADER_TRANSPORT (CharSlice99_from_str(\"Transport\"))\n\n/**\n * `Unsupported`.\n */\n#define SMOLRTSP_HEADER_UNSUPPORTED (CharSlice99_from_str(\"Unsupported\"))\n\n/**\n * `User-Agent`.\n */\n#define SMOLRTSP_HEADER_USER_AGENT (CharSlice99_from_str(\"User-Agent\"))\n\n/**\n * `Via`.\n */\n#define SMOLRTSP_HEADER_VIA (CharSlice99_from_str(\"Via\"))\n\n/**\n * `WWW-Authenticate`.\n */\n#define SMOLRTSP_HEADER_WWW_AUTHENTICATE                                       \\\n    (CharSlice99_from_str(\"WWW-Authenticate\"))\n"
  },
  {
    "path": "include/smolrtsp/types/header_map.h",
    "content": "/**\n * @file\n * @brief An RTSP header map.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/types/header.h>\n\n#include <stdbool.h>\n#include <stddef.h>\n#include <stdio.h>\n\n#include <unistd.h>\n\n#include <slice99.h>\n\n/**\n * Creates new #SmolRTSP_HeaderMap from an array expression of #SmolRTSP_Header.\n */\n#define SmolRTSP_HeaderMap_from_array(...)                                     \\\n    ((SmolRTSP_HeaderMap){                                                     \\\n        .headers = __VA_ARGS__,                                                \\\n        .len = SLICE99_ARRAY_LEN((SmolRTSP_Header[])__VA_ARGS__),              \\\n    })\n\n/**\n * The maximum number of headers in #SmolRTSP_HeaderMap.headers.\n */\n#define SMOLRTSP_HEADER_MAP_CAPACITY 32\n\n/**\n * An RTSP header map.\n */\ntypedef struct {\n    /**\n     * The pointer to an array of headers;\n     */\n    SmolRTSP_Header headers[SMOLRTSP_HEADER_MAP_CAPACITY];\n\n    /**\n     * The count of elements currently in #headers.\n     */\n    size_t len;\n} SmolRTSP_HeaderMap;\n\n/**\n * Returns an empty header map suitable for further parsing.\n */\nSmolRTSP_HeaderMap SmolRTSP_HeaderMap_empty(void) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Finds a value associated with @p key within @p self.\n *\n * If @p key has been found within @p self, this function assigns @p value to\n * this key (no copying occurs) and returns `true`. Otherwise, returns `false`\n * and @p value remains unchanged.\n *\n * @param[in] self The header map to be searched for @p key.\n * @param[in] key The key to be searched in @p self.\n * @param[out] value The header value to be assigned, if found. If `NULL`, no\n * assignment is performed.\n *\n * @pre `self != NULL`\n */\nbool SmolRTSP_HeaderMap_find(\n    const SmolRTSP_HeaderMap *restrict self, CharSlice99 key,\n    CharSlice99 *restrict value) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Returns whether @p key is present in @p self.\n *\n * @pre `self != NULL`\n */\nbool SmolRTSP_HeaderMap_contains_key(\n    const SmolRTSP_HeaderMap *restrict self,\n    CharSlice99 key) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Appends a new header to a header map.\n *\n * @param[out] self The header map to modify.\n * @param[in] h The new header to be appended.\n *\n * @pre `self != NULL`\n * @pre `!SmolRTSP_HeaderMap_is_full(self)`\n */\nvoid SmolRTSP_HeaderMap_append(\n    SmolRTSP_HeaderMap *restrict self, SmolRTSP_Header h);\n\n/**\n * Serialises @p self into @p w.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_HeaderMap_serialize(\n    const SmolRTSP_HeaderMap *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_HeaderMap_parse(\n    SmolRTSP_HeaderMap *restrict self,\n    CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_HeaderMap_eq(\n    const SmolRTSP_HeaderMap *restrict lhs,\n    const SmolRTSP_HeaderMap *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests whether @p self is full (no more space left for an additional header)\n * or not.\n *\n * @return `true` if @p self is full, `false` otherwise.\n *\n * @pre `self != NULL`\n */\nbool SmolRTSP_HeaderMap_is_full(const SmolRTSP_HeaderMap *restrict self)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Attempts to parse a header.\n *\n * @param[in] headers The header map to search @p key in.\n * @param[in] key The header key to search for.\n * @param[in] fmt The `scanf-`like format string.\n *\n * @return The number of scanned parameters or -1 if @p key is not found.\n *\n * @pre `headers != NULL`\n * @pre `fmt != NULL`\n */\nint smolrtsp_scanf_header(\n    const SmolRTSP_HeaderMap *restrict headers, CharSlice99 key,\n    const char *restrict fmt, ...) SMOLRTSP_PRIV_MUST_USE\n    SMOLRTSP_PRIV_GCC_ATTR(format(scanf, 3, 4));\n"
  },
  {
    "path": "include/smolrtsp/types/message_body.h",
    "content": "/**\n * @file\n * @brief An RTSP message body.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n\n#include <stdbool.h>\n#include <stddef.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP message body.\n */\ntypedef CharSlice99 SmolRTSP_MessageBody;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_MessageBody_parse(\n    SmolRTSP_MessageBody *restrict self, CharSlice99 input,\n    size_t content_length) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Returns an empty message body.\n */\nSmolRTSP_MessageBody SmolRTSP_MessageBody_empty(void) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_MessageBody_eq(\n    const SmolRTSP_MessageBody *restrict lhs,\n    const SmolRTSP_MessageBody *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/method.h",
    "content": "/**\n * @file\n * @brief An RTSP method.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n\n#include <stdbool.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP method.\n */\ntypedef CharSlice99 SmolRTSP_Method;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_Method_parse(\n    SmolRTSP_Method *restrict self, CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_Method_eq(\n    const SmolRTSP_Method *restrict lhs,\n    const SmolRTSP_Method *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * `OPTIONS`.\n */\n#define SMOLRTSP_METHOD_OPTIONS (CharSlice99_from_str(\"OPTIONS\"))\n\n/**\n * `DESCRIBE`.\n */\n#define SMOLRTSP_METHOD_DESCRIBE (CharSlice99_from_str(\"DESCRIBE\"))\n\n/**\n * `ANNOUNCE`.\n */\n#define SMOLRTSP_METHOD_ANNOUNCE (CharSlice99_from_str(\"ANNOUNCE\"))\n\n/**\n * `SETUP`.\n */\n#define SMOLRTSP_METHOD_SETUP (CharSlice99_from_str(\"SETUP\"))\n\n/**\n * `PLAY`.\n */\n#define SMOLRTSP_METHOD_PLAY (CharSlice99_from_str(\"PLAY\"))\n\n/**\n * `PAUSE`.\n */\n#define SMOLRTSP_METHOD_PAUSE (CharSlice99_from_str(\"PAUSE\"))\n\n/**\n * `TEARDOWN`.\n */\n#define SMOLRTSP_METHOD_TEARDOWN (CharSlice99_from_str(\"TEARDOWN\"))\n\n/**\n * `GET_PARAMETER`.\n */\n#define SMOLRTSP_METHOD_GET_PARAMETER (CharSlice99_from_str(\"GET_PARAMETER\"))\n\n/**\n * `SET_PARAMETER`.\n */\n#define SMOLRTSP_METHOD_SET_PARAMETER (CharSlice99_from_str(\"SET_PARAMETER\"))\n\n/**\n * `REDIRECT`.\n */\n#define SMOLRTSP_METHOD_REDIRECT (CharSlice99_from_str(\"REDIRECT\"))\n\n/**\n * `RECORD`.\n */\n#define SMOLRTSP_METHOD_RECORD (CharSlice99_from_str(\"RECORD\"))\n"
  },
  {
    "path": "include/smolrtsp/types/reason_phrase.h",
    "content": "/**\n * @file\n * @brief An RTSP reason phrase.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n\n#include <stdbool.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP reason phrase.\n */\ntypedef CharSlice99 SmolRTSP_ReasonPhrase;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_ReasonPhrase_parse(\n    SmolRTSP_ReasonPhrase *restrict self,\n    CharSlice99 data) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_ReasonPhrase_eq(\n    const SmolRTSP_ReasonPhrase *restrict lhs,\n    const SmolRTSP_ReasonPhrase *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/request.h",
    "content": "/**\n * @file\n * @brief An RTSP request.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/types/header_map.h>\n#include <smolrtsp/types/message_body.h>\n#include <smolrtsp/types/request_line.h>\n\n#include <stdbool.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP request.\n */\ntypedef struct {\n    /**\n     * The request line.\n     */\n    SmolRTSP_RequestLine start_line;\n\n    /**\n     * The header map.\n     */\n    SmolRTSP_HeaderMap header_map;\n\n    /**\n     * The message body.\n     */\n    SmolRTSP_MessageBody body;\n\n    /**\n     * The sequence number for an RTSP request/response pair.\n     */\n    uint32_t cseq;\n} SmolRTSP_Request;\n\n/**\n * Returns an RTSP request suitable for being parsed.\n */\nSmolRTSP_Request SmolRTSP_Request_uninit(void) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Serialises @p self into @p w.\n *\n * If `CSeq` and `Content-Length` are not present in\n * #SmolRTSP_Request.header_map, they will be taken from #SmolRTSP_Request.cseq\n * and #SmolRTSP_Request.body, respectively, and serialised as first headers\n * automatically.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_Request_serialize(\n    const SmolRTSP_Request *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_Request_parse(\n    SmolRTSP_Request *restrict self, CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_Request_eq(\n    const SmolRTSP_Request *restrict lhs,\n    const SmolRTSP_Request *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/request_line.h",
    "content": "/**\n * @file\n * @brief An RTSP request line.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/types/method.h>\n#include <smolrtsp/types/request_uri.h>\n#include <smolrtsp/types/rtsp_version.h>\n\n#include <stdbool.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP request line.\n */\ntypedef struct {\n    /**\n     * The method used.\n     */\n    SmolRTSP_Method method;\n\n    /**\n     * The request URI.\n     */\n    SmolRTSP_RequestUri uri;\n\n    /**\n     * The RTSP version used.\n     */\n    SmolRTSP_RtspVersion version;\n} SmolRTSP_RequestLine;\n\n/**\n * Serialises @p self into @p w.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_RequestLine_serialize(\n    const SmolRTSP_RequestLine *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_RequestLine_parse(\n    SmolRTSP_RequestLine *restrict self,\n    CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_RequestLine_eq(\n    const SmolRTSP_RequestLine *restrict lhs,\n    const SmolRTSP_RequestLine *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/request_uri.h",
    "content": "/**\n * @file\n * @brief An RTSP request URI.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n\n#include <stdbool.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP request URI.\n */\ntypedef CharSlice99 SmolRTSP_RequestUri;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_RequestUri_parse(\n    SmolRTSP_RequestUri *restrict self,\n    CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_RequestUri_eq(\n    const SmolRTSP_RequestUri *restrict lhs,\n    const SmolRTSP_RequestUri *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/response.h",
    "content": "/**\n * @file\n * @brief An RTSP response.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/types/header_map.h>\n#include <smolrtsp/types/message_body.h>\n#include <smolrtsp/types/response_line.h>\n\n#include <stdbool.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP response.\n */\ntypedef struct {\n    /**\n     * The response line.\n     */\n    SmolRTSP_ResponseLine start_line;\n\n    /**\n     * The header map.\n     */\n    SmolRTSP_HeaderMap header_map;\n\n    /**\n     * The message body.\n     */\n    SmolRTSP_MessageBody body;\n\n    /**\n     * The sequence number for an RTSP request/response pair.\n     */\n    uint32_t cseq;\n} SmolRTSP_Response;\n\n/**\n * Returns an RTSP response suitable for being parsed.\n */\nSmolRTSP_Response SmolRTSP_Response_uninit(void) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Serialises @p self into @p w.\n *\n * If `CSeq` and `Content-Length` are not present in\n * #SmolRTSP_Response.header_map, they will be taken from\n * #SmolRTSP_Response.cseq and #SmolRTSP_Response.body, respectively, and\n * serialised as first headers automatically.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_Response_serialize(\n    const SmolRTSP_Response *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_Response_parse(\n    SmolRTSP_Response *restrict self, CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_Response_eq(\n    const SmolRTSP_Response *restrict lhs,\n    const SmolRTSP_Response *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/response_line.h",
    "content": "/**\n * @file\n * @brief An RTSP response line.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/types/reason_phrase.h>\n#include <smolrtsp/types/rtsp_version.h>\n#include <smolrtsp/types/status_code.h>\n\n#include <stdbool.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP response line.\n */\ntypedef struct {\n    /**\n     * The RTSP version used.\n     */\n    SmolRTSP_RtspVersion version;\n\n    /**\n     * The status code.\n     */\n    SmolRTSP_StatusCode code;\n\n    /**\n     * The reason phrase.\n     */\n    SmolRTSP_ReasonPhrase reason;\n} SmolRTSP_ResponseLine;\n\n/**\n * Serialises @p self into @p w.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_ResponseLine_serialize(\n    const SmolRTSP_ResponseLine *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_ResponseLine_parse(\n    SmolRTSP_ResponseLine *restrict self,\n    CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_ResponseLine_eq(\n    const SmolRTSP_ResponseLine *restrict lhs,\n    const SmolRTSP_ResponseLine *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/rtp.h",
    "content": "/**\n * @file\n * @brief <a href=\"https://datatracker.ietf.org/doc/html/rfc3550\">RFC\n * 3550</a>-compliant RTP implementation.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n#include <stdbool.h>\n#include <stddef.h>\n#include <stdint.h>\n\n/**\n * An RTP header.\n *\n * All numerical fields must be in network byte order.\n */\ntypedef struct {\n    /**\n     * (2 bits) Indicates the version of the protocol. Current version is 2.\n     */\n    uint8_t version;\n\n    /**\n     * (1 bit) Used to indicate if there are extra padding bytes at the end of\n     * the RTP packet. Padding may be used to fill up a block of certain size,\n     * for example as required by an encryption algorithm. The last byte of the\n     * padding contains the number of padding bytes that were added (including\n     * itself).\n     */\n    bool padding;\n\n    /**\n     * (1 bit) Indicates presence of an extension header between the header and\n     * payload data. The extension header is application or profile specific.\n     */\n    bool extension;\n\n    /**\n     * (4 bits) Contains the number of CSRC identifiers (defined below) that\n     * follow the SSRC (also defined below).\n     */\n    uint8_t csrc_count;\n\n    /**\n     * (1 bit) Signaling used at the application level in a profile-specific\n     * manner. If it is set, it means that the current data has some special\n     * relevance for the application.\n     */\n    bool marker;\n\n    /**\n     * (7 bits) Indicates the format of the payload and thus determines its\n     * interpretation by the application. Values are profile specific and may be\n     * dynamically assigned.\n     */\n    uint8_t payload_ty;\n\n    /**\n     * (16 bits) The sequence number is incremented for each RTP data packet\n     * sent and is to be used by the receiver to detect packet loss[1] and to\n     * accommodate out-of-order delivery. The initial value of the sequence\n     * number should be randomized to make known-plaintext attacks on Secure\n     * Real-time Transport Protocol more difficult.\n     */\n    uint16_t sequence_number;\n\n    /**\n     * Used by the receiver to play back the received samples at appropriate\n     * time and interval. When several media streams are present, the timestamps\n     * may be independent in each stream.[b] The granularity of the timing is\n     * application specific. For example, an audio application that samples data\n     * once every 125 μs (8 kHz, a common sample rate in digital telephony)\n     * would use that value as its clock resolution. Video streams typically use\n     * a 90 kHz clock. The clock granularity is one of the details that is\n     * specified in the RTP profile for an application.\n     */\n    uint32_t timestamp;\n\n    /**\n     * (32 bits) Synchronization source identifier uniquely identifies the\n     * source of a stream. The synchronization sources within the same RTP\n     * session will be unique.\n     */\n    uint32_t ssrc;\n\n    /**\n     * (32 bits each, the number of entries is indicated by the CSRC count\n     * field) Contributing source IDs enumerate contributing sources to a stream\n     * which has been generated from multiple sources.\n     */\n    uint32_t *csrc;\n\n    /**\n     * (optional, presence indicated by Extension field) The first 32-bit word\n     * contains a profile-specific identifier (16 bits) and a length specifier\n     * (16 bits) that indicates the length of the extension in 32-bit units,\n     * excluding the 32 bits of the extension header. The extension header data\n     * follows.\n     */\n    uint16_t extension_profile;\n\n    /**\n     * Indicates the length of the extension in 32-bit units.\n     */\n    uint16_t extension_payload_len;\n\n    /**\n     * The pointer to extension header data.\n     */\n    uint8_t *extension_payload;\n} SmolRTSP_RtpHeader;\n\n/**\n * Computes the size of the binary @p self.\n */\nsize_t SmolRTSP_RtpHeader_size(SmolRTSP_RtpHeader self) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Writes @p self to @p buffer.\n *\n * @param[in] self The RTP header to write.\n * @param[out] buffer The pointer to write to. Must be at least of size\n * `SmolRTSP_RtpHeader_size(self)`.\n *\n * @return The pointer to a passed buffer.\n */\nuint8_t *SmolRTSP_RtpHeader_serialize(\n    SmolRTSP_RtpHeader self, uint8_t buffer[restrict]) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/rtsp_version.h",
    "content": "/**\n * @file\n * @brief An RTSP version.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/writer.h>\n\n#include <stdbool.h>\n#include <stdint.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP version.\n */\ntypedef struct {\n    /**\n     * The major number.\n     */\n    uint8_t major;\n\n    /**\n     * The minor number.\n     */\n    uint8_t minor;\n} SmolRTSP_RtspVersion;\n\n/**\n * Serialises @p self into @p w.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_RtspVersion_serialize(\n    const SmolRTSP_RtspVersion *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses @p data to @p self.\n *\n * @pre `self != NULL`\n */\nSmolRTSP_ParseResult SmolRTSP_RtspVersion_parse(\n    SmolRTSP_RtspVersion *restrict self,\n    CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_RtspVersion_eq(\n    const SmolRTSP_RtspVersion *restrict lhs,\n    const SmolRTSP_RtspVersion *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp/types/sdp.h",
    "content": "/**\n * @file\n * @brief <a href=\"https://datatracker.ietf.org/doc/html/rfc4566\">RFC\n * 4566</a>-compliant SDP implementation.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/writer.h>\n\n#include <slice99.h>\n\n/**\n * An SDP type (one character).\n */\ntypedef char SmolRTSP_SdpType;\n\n/**\n * An SDP line.\n */\ntypedef struct {\n    /**\n     * The type of this line.\n     */\n    SmolRTSP_SdpType ty;\n\n    /**\n     * The value of this line.\n     */\n    CharSlice99 value;\n} SmolRTSP_SdpLine;\n\n/**\n * Serialises @p self into @p w.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_SdpLine_serialize(\n    const SmolRTSP_SdpLine *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Printfs a single SDP line to @p w.\n *\n * @param[out] w The writer to be provided with SDP data.\n * @param[in] ty The type of the SDP line.\n * @param[in] fmt The `printf`-like format string.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `w.self && w.vptr`\n * @pre `fmt != NULL`\n */\nssize_t smolrtsp_sdp_printf(\n    SmolRTSP_Writer w, SmolRTSP_SdpType ty, const char *restrict fmt,\n    ...) SMOLRTSP_PRIV_MUST_USE SMOLRTSP_PRIV_GCC_ATTR(format(printf, 3, 4));\n\n/**\n * Writes a sequence of SDP lines to @p w.\n *\n * @param[out] ret The variable name of type `ssize_t` that will be incremented\n * with a number of bytes written to @p w.\n * @param[out] w The variable name of type `SmolRTSP_Writer` to be provided with\n * SDP data.\n *\n * The rest of arguments represent a non-empty sequence of comma-separated\n * tuples `(ty, fmt, ...)`, where\n *  - `ty` is an SDP line type (such as #SMOLRTSP_SDP_VERSION),\n *  - `fmt` is a `printf`-like format string,\n *  - and `...` are the `fmt` parameters (may be omitted).\n *\n * Under the hood, #SMOLRTSP_SDP_DESCRIBE just generates a #smolrtsp_sdp_printf\n * function invocation for each variadic argument.\n *\n * ## Examples\n *\n * @code\n * char buffer[256] = {0};\n * const SmolRTSP_Writer sdp = smolrtsp_string_writer(buffer);\n * ssize_t ret = 0;\n *\n * SMOLRTSP_SDP_DESCRIBE(\n *     ret, sdp,\n *     (SMOLRTSP_SDP_VERSION, \"0\"),\n *     (SMOLRTSP_SDP_ORIGIN, \"SmolRTSP 3855320066 3855320129 IN IP4 0.0.0.0\"),\n *     (SMOLRTSP_SDP_SESSION_NAME, \"SmolRTSP test\"),\n *     (SMOLRTSP_SDP_CONNECTION, \"IN IP4 %s\", SERVER_IP_ADDR),\n *     (SMOLRTSP_SDP_TIME, \"0 0\"),\n *     (SMOLRTSP_SDP_MEDIA, \"audio %d RTP/AVP %d\", AUDIO_PORT,\n * AUDIO_RTP_PAYLOAD_TYPE),\n *     (SMOLRTSP_SDP_ATTR, \"control:audio\"));\n *\n * const char *expected =\n *     \"v=0\\r\\n\"\n *     \"o=SmolRTSP 3855320066 3855320129 IN IP4 0.0.0.0\\r\\n\"\n *     \"s=SmolRTSP test\\r\\n\"\n *     \"c=IN IP4 0.0.0.0\\r\\n\"\n *     \"t=0 0\\r\\n\"\n *     \"m=audio 123 RTP/AVP 456\\r\\n\"\n *     \"a=control:audio\\r\\n\";\n *\n * assert((ssize_t)strlen(expected) == ret);\n * assert(strcmp(expected, buffer) == 0);\n * @endcode\n */\n#define SMOLRTSP_SDP_DESCRIBE(ret, w, ...)                                     \\\n    SMOLRTSP_PRIV_SDP_DESCRIBE(ret, w, __VA_ARGS__)\n\n#ifndef DOXYGEN_IGNORE\n\n#include <metalang99.h>\n\n#define SMOLRTSP_PRIV_SDP_DESCRIBE(ret, w, ...)                                \\\n    do {                                                                       \\\n        ssize_t smolrtsp_priv_sdp_ret = 0;                                     \\\n        ML99_EVAL(ML99_variadicsForEach(                                       \\\n            ML99_compose(                                                      \\\n                ML99_appl(v(SMOLRTSP_PRIV_genSdpPrintf), v(ret, w)),           \\\n                v(ML99_untuple)),                                              \\\n            v(__VA_ARGS__)))                                                   \\\n    } while (0)\n\n#define SMOLRTSP_PRIV_genSdpPrintf_IMPL(ret, w, ty, ...)                       \\\n    v({                                                                        \\\n        smolrtsp_priv_sdp_ret = smolrtsp_sdp_printf(w, ty, __VA_ARGS__);       \\\n        if (smolrtsp_priv_sdp_ret < 0) {                                       \\\n            break;                                                             \\\n        }                                                                      \\\n        ret += smolrtsp_priv_sdp_ret;                                          \\\n    })\n\n#define SMOLRTSP_PRIV_genSdpPrintf_ARITY 2\n\n#endif // DOXYGEN_IGNORE\n\n/**\n * Protocol Version (`v=`).\n */\n#define SMOLRTSP_SDP_VERSION 'v'\n\n/**\n * Origin (`o=`).\n */\n#define SMOLRTSP_SDP_ORIGIN 'o'\n\n/**\n * Session Name (`s=`).\n */\n#define SMOLRTSP_SDP_SESSION_NAME 's'\n\n/**\n * Session Information (`i=`).\n */\n#define SMOLRTSP_SDP_INFO 'i'\n\n/**\n * URI (`u=`).\n */\n#define SMOLRTSP_SDP_URI 'u'\n\n/**\n * Email Address (`e=`).\n */\n#define SMOLRTSP_SDP_EMAIL 'e'\n\n/**\n * Phone Number (`p=`).\n */\n#define SMOLRTSP_SDP_PHONE 'p'\n\n/**\n * Connection Data (`c=`).\n */\n#define SMOLRTSP_SDP_CONNECTION 'c'\n\n/**\n * Bandwidth (`b=`).\n */\n#define SMOLRTSP_SDP_BANDWIDTH 'b'\n\n/**\n * Timing (`t=`).\n */\n#define SMOLRTSP_SDP_TIME 't'\n\n/**\n * Repeat Times (`r=`).\n */\n#define SMOLRTSP_SDP_REPEAT 'r'\n\n/**\n * Time Zones (`z=`).\n */\n#define SMOLRTSP_SDP_TIME_ZONES 'z'\n\n/**\n * Encryption Keys (`k=`).\n */\n#define SMOLRTSP_SDP_ENCRYPTION_KEYS 'k'\n\n/**\n * Attributes (`a=`).\n */\n#define SMOLRTSP_SDP_ATTR 'a'\n\n/**\n * Media Descriptions (`m=`).\n */\n#define SMOLRTSP_SDP_MEDIA 'm'\n"
  },
  {
    "path": "include/smolrtsp/types/status_code.h",
    "content": "/**\n * @file\n * @brief An RTSP status code.\n */\n\n#pragma once\n\n#include <smolrtsp/priv/compiler_attrs.h>\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/writer.h>\n\n#include <stdbool.h>\n#include <stdint.h>\n\n#include <slice99.h>\n\n/**\n * An RTSP status code.\n */\ntypedef uint16_t SmolRTSP_StatusCode;\n\n/**\n * Serialises @p self into @p w.\n *\n * @param[in] self The instance to be serialised.\n * @param[in] w The writer to be provided with serialised data.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `self != NULL`\n * @pre `w.self && w.vptr`\n */\nssize_t SmolRTSP_StatusCode_serialize(\n    const SmolRTSP_StatusCode *restrict self,\n    SmolRTSP_Writer w) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses @p data to @p self.\n */\nSmolRTSP_ParseResult SmolRTSP_StatusCode_parse(\n    SmolRTSP_StatusCode *restrict self,\n    CharSlice99 input) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Tests @p lhs and @p rhs for equality.\n *\n * @pre `lhs != NULL`\n * @pre `rhs != NULL`\n */\nbool SmolRTSP_StatusCode_eq(\n    const SmolRTSP_StatusCode *restrict lhs,\n    const SmolRTSP_StatusCode *restrict rhs) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * `Continue`.\n */\n#define SMOLRTSP_STATUS_CONTINUE 100\n\n/**\n * `OK`.\n */\n#define SMOLRTSP_STATUS_OK 200\n\n/**\n * `Created`.\n */\n#define SMOLRTSP_STATUS_CREATED 201\n\n/**\n * `Low on Storage Space`.\n */\n#define SMOLRTSP_STATUS_LOW_ON_STORAGE_SPACE 250\n\n/**\n * `Multiple Choices`.\n */\n#define SMOLRTSP_STATUS_MULTIPLE_CHOICES 300\n\n/**\n * `Moved Permanently`.\n */\n#define SMOLRTSP_STATUS_MOVED_PERMANENTLY 301\n\n/**\n * `Moved Temporarily`.\n */\n#define SMOLRTSP_STATUS_MOVED_TEMPORARILY 302\n\n/**\n * `See Other`.\n */\n#define SMOLRTSP_STATUS_SEE_OTHER 303\n\n/**\n * `Not Modified`.\n */\n#define SMOLRTSP_STATUS_NOT_MODIFIED 304\n\n/**\n * `Use Proxy`.\n */\n#define SMOLRTSP_STATUS_USE_PROXY 305\n\n/**\n * `Bad Request`.\n */\n#define SMOLRTSP_STATUS_BAD_REQUEST 400\n\n/**\n * `Unauthorized`.\n */\n#define SMOLRTSP_STATUS_UNAUTHORIZED 401\n\n/**\n * `Payment Required`.\n */\n#define SMOLRTSP_STATUS_PAYMENT_REQUIRED 402\n\n/**\n * `Forbidden`.\n */\n#define SMOLRTSP_STATUS_FORBIDDEN 403\n\n/**\n * `Not Found`.\n */\n#define SMOLRTSP_STATUS_NOT_FOUND 404\n\n/**\n * `Method Not Allowed`.\n */\n#define SMOLRTSP_STATUS_METHOD_NOT_ALLOWED 405\n\n/**\n * `Not Acceptable`.\n */\n#define SMOLRTSP_STATUS_NOT_ACCEPTABLE 406\n\n/**\n * `Proxy Authentication Required`.\n */\n#define SMOLRTSP_STATUS_PROXY_AUTHENTICATION_REQUIRED 407\n\n/**\n * `Request Time-out`.\n */\n#define SMOLRTSP_STATUS_REQUEST_TIMEOUT 408\n\n/**\n * `Gone`.\n */\n#define SMOLRTSP_STATUS_GONE 410\n\n/**\n * `Length Required`.\n */\n#define SMOLRTSP_STATUS_LENGTH_REQUIRED 411\n\n/**\n * `Precondition Failed`.\n */\n#define SMOLRTSP_STATUS_PRECONDITION_FAILED 412\n\n/**\n * `Request Entity Too Large`.\n */\n#define SMOLRTSP_STATUS_REQUEST_ENTITY_TOO_LARGE 413\n\n/**\n * `Request-URI Too Large`.\n */\n#define SMOLRTSP_STATUS_REQUEST_URI_TOO_LARGE 414\n\n/**\n * `Unsupported Media Type`.\n */\n#define SMOLRTSP_STATUS_UNSUPPORTED_MEDIA_TYPE 415\n\n/**\n * `Parameter Not Understood`.\n */\n#define SMOLRTSP_STATUS_PARAMETER_NOT_UNDERSTOOD 451\n\n/**\n * `Conference Not Found`.\n */\n#define SMOLRTSP_STATUS_CONFERENCE_NOT_FOUND 452\n\n/**\n * `Not Enough Bandwidth`.\n */\n#define SMOLRTSP_STATUS_NOT_ENOUGH_BANDWIDTH 453\n\n/**\n * `Session Not Found`.\n */\n#define SMOLRTSP_STATUS_SESSION_NOT_FOUND 454\n\n/**\n * `Method Not Valid in This State`.\n */\n#define SMOLRTSP_STATUS_METHOD_NOT_VALID_IN_THIS_STATE 455\n\n/**\n * `Header Field Not Valid for Resource`.\n */\n#define SMOLRTSP_STATUS_HEADER_FIELD_NOT_VALID_FOR_RESOURCE 456\n\n/**\n * `Invalid Range`.\n */\n#define SMOLRTSP_STATUS_INVALID_RANGE 457\n\n/**\n * `Parameter Is Read-Only`.\n */\n#define SMOLRTSP_STATUS_PARAMETER_IS_READ_ONLY 458\n\n/**\n * `Aggregate operation not allowed`.\n */\n#define SMOLRTSP_STATUS_AGGREGATE_OPERATION_NOT_ALLOWED 459\n\n/**\n * `Only aggregate operation allowed`.\n */\n#define SMOLRTSP_STATUS_ONLY_AGGREGATE_OPERATION_ALLOWED 460\n\n/**\n * `Unsupported transport`.\n */\n#define SMOLRTSP_STATUS_UNSUPPORTED_TRANSPORT 461\n\n/**\n * `Destination unreachable`.\n */\n#define SMOLRTSP_STATUS_DESTINATION_UNREACHABLE 462\n\n/**\n * `Internal Server Error`.\n */\n#define SMOLRTSP_STATUS_INTERNAL_SERVER_ERROR 500\n\n/**\n * `Not Implemented`.\n */\n#define SMOLRTSP_STATUS_NOT_IMPLEMENTED 501\n\n/**\n * `Bad Gateway`.\n */\n#define SMOLRTSP_STATUS_BAD_GATEWAY 502\n\n/**\n * `Service Unavailable`.\n */\n#define SMOLRTSP_STATUS_SERVICE_UNAVAILABLE 503\n\n/**\n * `Gateway Time-out`.\n */\n#define SMOLRTSP_STATUS_GATEWAY_TIMEOUT 504\n\n/**\n * `RTSP Version not supported`.\n */\n#define SMOLRTSP_STATUS_RTSP_VERSION_NOT_SUPPORTED 505\n\n/**\n * `Option not supported`.\n */\n#define SMOLRTSP_STATUS_OPTION_NOT_SUPPORTED 551\n"
  },
  {
    "path": "include/smolrtsp/util.h",
    "content": "/**\n * @file\n * @brief Utilitary stuff.\n */\n\n#pragma once\n\n#include <smolrtsp/option.h>\n#include <smolrtsp/types/error.h>\n\n#include <stdint.h>\n\n#include <slice99.h>\n\n/**\n * Carriage-return + new-line represented as a data slice.\n */\n#define SMOLRTSP_CRLF (CharSlice99_from_str(\"\\r\\n\"))\n\n/**\n * The default RTSP port.\n */\n#define SMOLRTSP_DEFAULT_PORT 554\n\n/**\n * An RTSP lower transport.\n */\ntypedef enum {\n    /**\n     * TCP.\n     */\n    SmolRTSP_LowerTransport_TCP,\n\n    /**\n     * UDP.\n     */\n    SmolRTSP_LowerTransport_UDP,\n} SmolRTSP_LowerTransport;\n\n/**\n * Converts @p self to a string representation (`\"TCP\"` for\n * #SmolRTSP_LowerTransport_TCP and `\"UDP\"` for #SmolRTSP_LowerTransport_UDP).\n */\nconst char *SmolRTSP_LowerTransport_str(SmolRTSP_LowerTransport self);\n\n/**\n * An RTP/RTCP port pair specified as a range, e.g., `client_port=3456-3457`.\n */\ntypedef struct {\n    /**\n     * The RTP port.\n     */\n    uint16_t rtp_port;\n\n    /**\n     * The RTCP port.\n     */\n    uint16_t rtcp_port;\n} SmolRTSP_PortPair;\n\n/**\n * Defines `SmolRTSP_PortPairOption`.\n *\n * See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.\n */\nSMOLRTSP_DEF_OPTION(SmolRTSP_PortPair);\n\n/**\n * An RTP/RTCP channel pair specified as a range, e.g., `interleaved=4-5`.\n */\ntypedef struct {\n    /**\n     * The RTP channel identifier.\n     */\n    uint8_t rtp_channel;\n\n    /**\n     * The RTCP channel identifier.\n     */\n    uint8_t rtcp_channel;\n} SmolRTSP_ChannelPair;\n\n/**\n * Defines `SmolRTSP_ChannelPairOption`.\n *\n * See [Datatype99](https://github.com/hirrolot/datatype99) for the macro usage.\n */\nSMOLRTSP_DEF_OPTION(SmolRTSP_ChannelPair);\n\n/**\n * The RTSP transport configuration.\n *\n * @see <https://datatracker.ietf.org/doc/html/rfc2326#section-12.39>\n */\ntypedef struct {\n    /**\n     * The lower level transport (TCP or UDP).\n     */\n    SmolRTSP_LowerTransport lower;\n\n    /**\n     * True if the `unicast` parameter is present.\n     */\n    bool unicast;\n\n    /**\n     * True if the `multicast` parameter is present.\n     */\n    bool multicast;\n\n    /**\n     * The `interleaved` parameter, if present.\n     */\n    SmolRTSP_ChannelPairOption interleaved;\n\n    /**\n     * The `client_port` parameter, if present.\n     */\n    SmolRTSP_PortPairOption client_port;\n} SmolRTSP_TransportConfig;\n\n/**\n * Parses the\n * [`Transport`](https://datatracker.ietf.org/doc/html/rfc2326#section-12.39)\n * header.\n *\n * @param[out] config The result of parsing. It remains unchanged on failure.\n * @param[in] header_value The value of the `Transport` header.\n *\n * @return 0 on success, -1 on failure.\n *\n * @pre `config != NULL`\n */\nint smolrtsp_parse_transport(\n    SmolRTSP_TransportConfig *restrict config,\n    CharSlice99 header_value) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Returns a four-octet interleaved binary data header.\n *\n * @param[in] channel_id The one-byte channel identifier.\n * @param[in] payload_len The length of the encapsulated binary data\n * (network byte order).\n *\n * @see <https://datatracker.ietf.org/doc/html/rfc2326#section-10.12>\n */\nuint32_t smolrtsp_interleaved_header(uint8_t channel_id, uint16_t payload_len)\n    SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * Parses an four-octet interleaved binary data header @p data.\n *\n * @param[in] data The header to parse.\n * @param[out] channel_id The one-byte channel identifier.\n * @param[out] payload_len The length of the encapsulated binary data\n * (host byte order).\n *\n * @pre `channel_id != NULL`\n * @pre `payload_len != NULL`\n *\n * @see <https://datatracker.ietf.org/doc/html/rfc2326#section-10.12>\n */\nvoid smolrtsp_parse_interleaved_header(\n    const uint8_t data[restrict static 4], uint8_t *restrict channel_id,\n    uint16_t *restrict payload_len);\n"
  },
  {
    "path": "include/smolrtsp/writer.h",
    "content": "/**\n * @file\n * @brief The writer interface.\n */\n\n#pragma once\n\n#include <stdarg.h>\n#include <stddef.h>\n#include <stdio.h>\n\n#include <unistd.h>\n\n#include <interface99.h>\n#include <slice99.h>\n\n#include <smolrtsp/priv/compiler_attrs.h>\n\n/**\n * The user-supplied data writer interface.\n */\n#define SmolRTSP_Writer_IFACE                                                  \\\n                                                                               \\\n    /*                                                                         \\\n     * Writes @p data into itself.                                             \\\n     *                                                                         \\\n     * @param[in] data The slice of character data to write.                   \\\n     *                                                                         \\\n     * @return The number of bytes written or a negative value on error.       \\\n     */                                                                        \\\n    vfunc99(ssize_t, write, VSelf99, CharSlice99 data)                         \\\n                                                                               \\\n    /*                                                                         \\\n     * Lock writer to prevent race conditions on TCP interleaved channels      \\\n     */                                                                        \\\n    vfunc99(void, lock, VSelf99)                                               \\\n                                                                               \\\n    /*                                                                         \\\n     * Unlock writer locked by `lock`                                          \\\n     */                                                                        \\\n    vfunc99(void, unlock, VSelf99)                                             \\\n                                                                               \\\n    /*                                                                         \\\n     * Get current size of output buffer                                       \\\n     */                                                                        \\\n    vfunc99(size_t, filled, VSelf99)                                           \\\n                                                                               \\\n    /*                                                                         \\\n     * Writes a formatted string into itself.                                  \\\n     *                                                                         \\\n     * @param[in] fmt The `printf`-like format string.                         \\\n     *                                                                         \\\n     * @return The number of bytes written or a negative value on error.       \\\n     */                                                                        \\\n    vfunc99(int, writef, VSelf99, const char *restrict fmt, ...)               \\\n                                                                               \\\n    /*                                                                         \\\n     * The same as `printf` but accepts `va_list`.                             \\\n     */                                                                        \\\n    vfunc99(int, vwritef, VSelf99, const char *restrict fmt, va_list ap)\n\n/**\n * Defines the `SmolRTSP_Writer` interface.\n *\n * See [Interface99](https://github.com/hirrolot/interface99) for the macro\n * usage.\n */\ninterface99(SmolRTSP_Writer);\n\n/**\n * The same as #smolrtsp_write_slices but calculates an array length from\n * variadic arguments (the syntactically separated items of the array).\n */\n#define SMOLRTSP_WRITE_SLICES(w, ...)                                          \\\n    smolrtsp_write_slices(                                                     \\\n        w, SLICE99_ARRAY_LEN((const CharSlice99[])__VA_ARGS__),                \\\n        (const CharSlice99[])__VA_ARGS__)\n\n/**\n * Sequentially writes all items in @p data to @p w.\n *\n * @param[in] w The writer to be provided with data.\n * @param[in] len The number of items in @p data.\n * @param[in] data The data array which will be written to @p w, one-by-one.\n *\n * @return The number of bytes written or a negative value on error.\n *\n * @pre `w.self && w.vptr`\n */\nssize_t smolrtsp_write_slices(\n    SmolRTSP_Writer w, size_t len,\n    const CharSlice99 data[restrict static len]) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * A writer that invokes `write` on a provided file descriptor.\n *\n * @pre `fd != NULL`\n */\nSmolRTSP_Writer smolrtsp_fd_writer(int *fd) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * A writer that invokes `fwrite` on a provided file pointer.\n *\n * @pre `stream != NULL`\n */\nSmolRTSP_Writer smolrtsp_file_writer(FILE *stream) SMOLRTSP_PRIV_MUST_USE;\n\n/**\n * A writer that invokes `strncat` on a provided buffer.\n *\n * @pre @p buffer shall be capable of holding all characters that will be\n * written into it.\n */\nSmolRTSP_Writer smolrtsp_string_writer(char *buffer) SMOLRTSP_PRIV_MUST_USE;\n"
  },
  {
    "path": "include/smolrtsp.h",
    "content": "/**\n * @file\n * @brief Re-exports all the functionality.\n */\n\n/**\n * @mainpage\n *\n * A small, portable, extensible RTSP 1.0 implementation in C99.<br>\n *\n * See the <a href=\"files.html\">file list</a> for the available abstractions.\n * See <a href=\"https://github.com/OpenIPC/smolrtsp\">our official GitHub\n * repository</a> for a high-level overview.\n */\n\n#pragma once\n\n#include <smolrtsp/types/error.h>\n#include <smolrtsp/types/header.h>\n#include <smolrtsp/types/header_map.h>\n#include <smolrtsp/types/message_body.h>\n#include <smolrtsp/types/method.h>\n#include <smolrtsp/types/reason_phrase.h>\n#include <smolrtsp/types/request.h>\n#include <smolrtsp/types/request_line.h>\n#include <smolrtsp/types/request_uri.h>\n#include <smolrtsp/types/response.h>\n#include <smolrtsp/types/response_line.h>\n#include <smolrtsp/types/rtp.h>\n#include <smolrtsp/types/rtsp_version.h>\n#include <smolrtsp/types/sdp.h>\n#include <smolrtsp/types/status_code.h>\n\n#include <smolrtsp/context.h>\n#include <smolrtsp/controller.h>\n#include <smolrtsp/droppable.h>\n#include <smolrtsp/io_vec.h>\n#include <smolrtsp/nal.h>\n#include <smolrtsp/nal_transport.h>\n#include <smolrtsp/option.h>\n#include <smolrtsp/rtp_transport.h>\n#include <smolrtsp/transport.h>\n#include <smolrtsp/util.h>\n#include <smolrtsp/writer.h>\n"
  },
  {
    "path": "scripts/build.sh",
    "content": "#!/bin/bash\n\nmkdir build -p\ncd build\ncmake ..\ncmake --build .\n"
  },
  {
    "path": "scripts/check-fmt.sh",
    "content": "#!/bin/bash\n\n./run-clang-format/run-clang-format.py \\\n    --exclude tests/build \\\n    -r include src tests\n"
  },
  {
    "path": "scripts/docs.sh",
    "content": "#!/bin/bash\n\ndoxygen\n"
  },
  {
    "path": "scripts/fmt.sh",
    "content": "#!/bin/bash\n\nfind include src tests \\\n    \\( -path examples/build -o -path tests/build \\) -prune -false -o \\\n    \\( -iname \"*.h\" \\) -or \\( -iname \"*.c\" \\) | xargs clang-format -i\n"
  },
  {
    "path": "scripts/open-docs.sh",
    "content": "#!/bin/bash\n\nxdg-open docs/index.html\n"
  },
  {
    "path": "scripts/test-server-ffmpeg.sh",
    "content": "#!/bin/bash\n\nset -e\n\nffmpeg -y -rtsp_transport $1 -i rtsp://localhost -vcodec copy test_$1.h264 -acodec copy -f mulaw test_$1.g711a\ncmp test_$1.h264 examples/media/video.h264\ncmp test_$1.g711a examples/media/audio.g711a\n\necho \"Server '$1' is ok.\"\n"
  },
  {
    "path": "scripts/test-server.sh",
    "content": "#!/bin/bash\n\nset -e\n\nmkdir examples/build -p\ncd examples/build\ncmake ..\ncmake --build .\n./server &\nserver_pid=$!\n\nsleep 2s\n\ncd ../..\n\nbash scripts/test-server-ffmpeg.sh tcp &\ntcp_pid=$!\nbash scripts/test-server-ffmpeg.sh udp &\nudp_pid=$!\n\nwait $tcp_pid\nwait $udp_pid\nkill $server_pid\n"
  },
  {
    "path": "scripts/test.sh",
    "content": "#!/bin/bash\n\nmkdir tests/build -p\ncd tests/build\ncmake ..\ncmake --build .\n./tests\n"
  },
  {
    "path": "src/context.c",
    "content": "#include <smolrtsp/context.h>\n\n#include <smolrtsp/types/header_map.h>\n#include <smolrtsp/types/response.h>\n\n#include <assert.h>\n#include <stdio.h>\n#include <stdlib.h>\n\nstruct SmolRTSP_Context {\n    SmolRTSP_Writer writer;\n    uint32_t cseq;\n    SmolRTSP_HeaderMap header_map;\n    SmolRTSP_MessageBody body;\n    ssize_t ret;\n};\n\nSmolRTSP_Context *SmolRTSP_Context_new(SmolRTSP_Writer w, uint32_t cseq) {\n    assert(w.self && w.vptr);\n\n    SmolRTSP_Context *self = malloc(sizeof *self);\n    assert(self);\n    self->writer = w;\n    self->cseq = cseq;\n    self->header_map = SmolRTSP_HeaderMap_empty();\n    self->body = SmolRTSP_MessageBody_empty();\n    self->ret = 0;\n\n    return self;\n}\n\nSmolRTSP_Writer SmolRTSP_Context_get_writer(const SmolRTSP_Context *ctx) {\n    assert(ctx);\n    return ctx->writer;\n}\n\nuint32_t SmolRTSP_Context_get_cseq(const SmolRTSP_Context *ctx) {\n    assert(ctx);\n    return ctx->cseq;\n}\n\nssize_t SmolRTSP_Context_get_ret(const SmolRTSP_Context *ctx) {\n    assert(ctx);\n    return ctx->ret;\n}\n\nvoid smolrtsp_vheader(\n    SmolRTSP_Context *ctx, CharSlice99 key, const char *restrict fmt,\n    va_list list) {\n    assert(ctx);\n    assert(fmt);\n\n    va_list list_copy;\n    va_copy(list_copy, list);\n\n    const int space_required = vsnprintf(NULL, 0, fmt, list_copy);\n    assert(space_required > 0);\n    char *value = malloc(space_required + 1 /* null character */);\n    assert(value);\n\n    const int bytes_written __attribute__((unused)) =\n        vsprintf(value, fmt, list);\n    assert(space_required == bytes_written);\n\n    const SmolRTSP_Header h = {key, CharSlice99_from_str(value)};\n    SmolRTSP_HeaderMap_append(&ctx->header_map, h);\n}\n\nvoid smolrtsp_header(\n    SmolRTSP_Context *ctx, CharSlice99 key, const char *restrict fmt, ...) {\n    assert(ctx);\n    assert(fmt);\n\n    va_list ap;\n    va_start(ap, fmt);\n    smolrtsp_vheader(ctx, key, fmt, ap);\n    va_end(ap);\n}\n\nvoid smolrtsp_body(SmolRTSP_Context *ctx, SmolRTSP_MessageBody body) {\n    assert(ctx);\n    ctx->body = body;\n}\n\nssize_t smolrtsp_respond(\n    SmolRTSP_Context *ctx, SmolRTSP_StatusCode code, const char *reason) {\n    assert(ctx);\n    assert(reason);\n\n    const SmolRTSP_Response response = {\n        .start_line =\n            {\n                .version = {.major = 1, .minor = 0},\n                .code = code,\n                .reason = CharSlice99_from_str((char *)reason),\n            },\n        .header_map = ctx->header_map,\n        .body = ctx->body,\n        .cseq = ctx->cseq,\n    };\n\n    ctx->ret = SmolRTSP_Response_serialize(&response, ctx->writer);\n    return ctx->ret;\n}\n\nssize_t smolrtsp_respond_ok(SmolRTSP_Context *ctx) {\n    assert(ctx);\n    return smolrtsp_respond(ctx, SMOLRTSP_STATUS_OK, \"OK\");\n}\n\nssize_t smolrtsp_respond_internal_error(SmolRTSP_Context *ctx) {\n    assert(ctx);\n    return smolrtsp_respond(\n        ctx, SMOLRTSP_STATUS_INTERNAL_SERVER_ERROR, \"Internal error\");\n}\n\nvoid SmolRTSP_Context_drop(VSelf) {\n    VSELF(SmolRTSP_Context);\n    assert(self);\n\n    for (size_t i = 0; i < self->header_map.len; i++) {\n        free(self->header_map.headers[i].value.ptr);\n    }\n\n    free(self);\n}\n\nimplExtern(SmolRTSP_Droppable, SmolRTSP_Context);\n"
  },
  {
    "path": "src/controller.c",
    "content": "#include <smolrtsp/controller.h>\n\n#include <assert.h>\n\nvoid smolrtsp_dispatch(\n    SmolRTSP_Writer conn, SmolRTSP_Controller controller,\n    const SmolRTSP_Request *restrict req) {\n    assert(conn.self && conn.vptr);\n    assert(controller.self && controller.vptr);\n    assert(req);\n\n    SmolRTSP_Context *ctx = SmolRTSP_Context_new(conn, req->cseq);\n\n    if (VCALL(controller, before, ctx, req) == SmolRTSP_ControlFlow_Break) {\n        goto after;\n    }\n\n    const SmolRTSP_Method method = req->start_line.method,\n                          options = SMOLRTSP_METHOD_OPTIONS,\n                          describe = SMOLRTSP_METHOD_DESCRIBE,\n                          setup = SMOLRTSP_METHOD_SETUP,\n                          play = SMOLRTSP_METHOD_PLAY,\n                          teardown = SMOLRTSP_METHOD_TEARDOWN;\n\n    if (SmolRTSP_Method_eq(&method, &options)) {\n        VCALL(controller, options, ctx, req);\n    } else if (SmolRTSP_Method_eq(&method, &describe)) {\n        VCALL(controller, describe, ctx, req);\n    } else if (SmolRTSP_Method_eq(&method, &setup)) {\n        VCALL(controller, setup, ctx, req);\n    } else if (SmolRTSP_Method_eq(&method, &play)) {\n        VCALL(controller, play, ctx, req);\n    } else if (SmolRTSP_Method_eq(&method, &teardown)) {\n        VCALL(controller, teardown, ctx, req);\n    } else {\n        VCALL(controller, unknown, ctx, req);\n    }\n\nafter:\n    VCALL(controller, after, SmolRTSP_Context_get_ret(ctx), ctx, req);\n\n    VTABLE(SmolRTSP_Context, SmolRTSP_Droppable).drop(ctx);\n}\n"
  },
  {
    "path": "src/io_vec.c",
    "content": "#include <smolrtsp/io_vec.h>\n\nsize_t SmolRTSP_IoVecSlice_len(SmolRTSP_IoVecSlice self) {\n    size_t result = 0;\n    for (size_t i = 0; i < self.len; i++) {\n        result += self.ptr[i].iov_len;\n    }\n\n    return result;\n}\n\nstruct iovec smolrtsp_slice_to_iovec(U8Slice99 slice) {\n    return (struct iovec){.iov_base = slice.ptr, .iov_len = slice.len};\n}\n"
  },
  {
    "path": "src/macros.h",
    "content": "#pragma once\n\n#include <stddef.h>\n\n#define CHK_WRITE_ERR(result, call)                                            \\\n    do {                                                                       \\\n        ssize_t CHK_WRITE_ERR_ret = call;                                      \\\n        if (CHK_WRITE_ERR_ret < 0) {                                           \\\n            return result;                                                     \\\n        } else {                                                               \\\n            result += CHK_WRITE_ERR_ret;                                       \\\n        }                                                                      \\\n    } while (0)\n"
  },
  {
    "path": "src/nal/h264.c",
    "content": "#include <smolrtsp/nal/h264.h>\n\n#include <smolrtsp/nal.h>\n\nSmolRTSP_H264NalHeader SmolRTSP_H264NalHeader_parse(uint8_t byte_header) {\n    return (SmolRTSP_H264NalHeader){\n        .forbidden_zero_bit = (byte_header & 0b10000000) >> 7 == 1,\n        .ref_idc = (byte_header & 0b01100000) >> 5,\n        .unit_type = (byte_header & 0b00011111),\n    };\n}\n\nuint8_t SmolRTSP_H264NalHeader_serialize(SmolRTSP_H264NalHeader self) {\n    return (self.forbidden_zero_bit ? 0b10000000 : 0b00000000) |\n           (self.ref_idc << 5) | (self.unit_type);\n}\n\nbool SmolRTSP_H264NalHeader_is_vps(SmolRTSP_H264NalHeader self) {\n    (void)self;\n    return false;\n}\n\nbool SmolRTSP_H264NalHeader_is_sps(SmolRTSP_H264NalHeader self) {\n    return SMOLRTSP_H264_NAL_UNIT_SPS == self.unit_type;\n}\n\nbool SmolRTSP_H264NalHeader_is_pps(SmolRTSP_H264NalHeader self) {\n    return SMOLRTSP_H264_NAL_UNIT_PPS == self.unit_type;\n}\n\nbool SmolRTSP_H264NalHeader_is_coded_slice_idr(SmolRTSP_H264NalHeader self) {\n    return SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_IDR == self.unit_type;\n}\n\nbool SmolRTSP_H264NalHeader_is_coded_slice_non_idr(\n    SmolRTSP_H264NalHeader self) {\n    return SMOLRTSP_H264_NAL_UNIT_CODED_SLICE_NON_IDR == self.unit_type;\n}\n\nvoid SmolRTSP_H264NalHeader_write_fu_header(\n    SmolRTSP_H264NalHeader self, uint8_t buffer[restrict],\n    bool is_first_fragment, bool is_last_fragment) {\n    uint8_t fu_identifier = (uint8_t)0b01111100; // 0, nal_ref_idc, FU-A (28)\n\n    if ((self.ref_idc & 0b00000010) == 0) {\n        fu_identifier &= 0b00111111;\n    }\n    if ((self.ref_idc & 0b00000001) == 0) {\n        fu_identifier &= 0b01011111;\n    }\n\n    const uint8_t fu_header = smolrtsp_nal_fu_header(\n        is_first_fragment, is_last_fragment, self.unit_type);\n\n    buffer = SLICE99_APPEND(buffer, fu_identifier);\n    buffer = SLICE99_APPEND(buffer, fu_header);\n}\n"
  },
  {
    "path": "src/nal/h265.c",
    "content": "#include <smolrtsp/nal/h265.h>\n\n#include <smolrtsp/nal.h>\n\n#include <arpa/inet.h>\n#include <string.h>\n\nSmolRTSP_H265NalHeader\nSmolRTSP_H265NalHeader_parse(uint8_t bytes[restrict static 2]) {\n    return (SmolRTSP_H265NalHeader){\n        .forbidden_zero_bit = (bytes[0] & 0b10000000) >> 7,\n        .unit_type = (bytes[0] & 0b01111110) >> 1,\n        .nuh_layer_id =\n            ((bytes[0] & 0b00000001) << 5) | ((bytes[1] & 0b11111000) >> 3),\n        .nuh_temporal_id_plus1 = (bytes[1] & 0b00000111),\n    };\n}\n\nuint16_t SmolRTSP_H265NalHeader_serialize(SmolRTSP_H265NalHeader self) {\n    const uint8_t bytes[2] = {\n        [0] = (((uint8_t)self.forbidden_zero_bit & 0b00000001) << 7) |\n              ((self.unit_type & 0b00111111) << 1) |\n              ((self.nuh_layer_id & 0b00100000) >> 5),\n\n        [1] = ((self.nuh_layer_id & 0b00011111) << 3) |\n              (self.nuh_temporal_id_plus1 & 0b00000111),\n    };\n\n    uint16_t n;\n    memcpy(&n, bytes, sizeof bytes);\n    return n;\n}\n\nbool SmolRTSP_H265NalHeader_is_vps(SmolRTSP_H265NalHeader self) {\n    return SMOLRTSP_H265_NAL_UNIT_VPS_NUT == self.unit_type;\n}\n\nbool SmolRTSP_H265NalHeader_is_sps(SmolRTSP_H265NalHeader self) {\n    return SMOLRTSP_H265_NAL_UNIT_SPS_NUT == self.unit_type;\n}\n\nbool SmolRTSP_H265NalHeader_is_pps(SmolRTSP_H265NalHeader self) {\n    return SMOLRTSP_H265_NAL_UNIT_PPS_NUT == self.unit_type;\n}\n\nbool SmolRTSP_H265NalHeader_is_coded_slice_idr(SmolRTSP_H265NalHeader self) {\n    return SMOLRTSP_H265_NAL_UNIT_IDR_W_RADL == self.unit_type;\n}\n\nbool SmolRTSP_H265NalHeader_is_coded_slice_non_idr(\n    SmolRTSP_H265NalHeader self) {\n    return SMOLRTSP_H265_NAL_UNIT_IDR_N_LP == self.unit_type ||\n           SMOLRTSP_H265_NAL_UNIT_TRAIL_R == self.unit_type;\n}\n\nvoid SmolRTSP_H265NalHeader_write_fu_header(\n    SmolRTSP_H265NalHeader self, uint8_t buffer[restrict],\n    bool is_first_fragment, bool is_last_fragment) {\n    const uint16_t payload_hdr =\n        SmolRTSP_H265NalHeader_serialize((SmolRTSP_H265NalHeader){\n            .forbidden_zero_bit = self.forbidden_zero_bit,\n            .unit_type = 49,\n            .nuh_layer_id = self.nuh_layer_id,\n            .nuh_temporal_id_plus1 = self.nuh_temporal_id_plus1,\n        });\n\n    const uint8_t fu_header = smolrtsp_nal_fu_header(\n        is_first_fragment, is_last_fragment, self.unit_type);\n\n    buffer = SLICE99_APPEND(buffer, payload_hdr);\n    buffer = SLICE99_APPEND(buffer, fu_header);\n}\n"
  },
  {
    "path": "src/nal.c",
    "content": "#include <smolrtsp/nal.h>\n\n#include <assert.h>\n\n#define NAL_HEADER_DERIVE_GETTER(T, name, h264_value, h265_value)              \\\n    T SmolRTSP_NalHeader_##name(SmolRTSP_NalHeader self) {                     \\\n        T result = 0;                                                          \\\n                                                                               \\\n        match(self) {                                                          \\\n            of(SmolRTSP_NalHeader_H264, h) result = h264_value;                \\\n            of(SmolRTSP_NalHeader_H265, h) result = h265_value;                \\\n        }                                                                      \\\n                                                                               \\\n        return result;                                                         \\\n    }\n\nNAL_HEADER_DERIVE_GETTER(uint8_t, unit_type, h->unit_type, h->unit_type)\nNAL_HEADER_DERIVE_GETTER(\n    size_t, size, ((void)h, SMOLRTSP_H264_NAL_HEADER_SIZE),\n    ((void)h, SMOLRTSP_H265_NAL_HEADER_SIZE))\nNAL_HEADER_DERIVE_GETTER(\n    size_t, fu_size, ((void)h, SMOLRTSP_H264_FU_HEADER_SIZE),\n    ((void)h, SMOLRTSP_H265_FU_HEADER_SIZE))\n\n#undef NAL_HEADER_DERIVE_GETTER\n\n#define NAL_HEADER_DERIVE_PREDICATE(fn)                                        \\\n    bool SmolRTSP_NalHeader_##fn(SmolRTSP_NalHeader self) {                    \\\n        bool result = 0;                                                       \\\n                                                                               \\\n        match(self) {                                                          \\\n            of(SmolRTSP_NalHeader_H264, h) result =                            \\\n                SmolRTSP_H264NalHeader_##fn(*h);                               \\\n            of(SmolRTSP_NalHeader_H265, h) result =                            \\\n                SmolRTSP_H265NalHeader_##fn(*h);                               \\\n        }                                                                      \\\n                                                                               \\\n        return result;                                                         \\\n    }\n\nNAL_HEADER_DERIVE_PREDICATE(is_vps)\nNAL_HEADER_DERIVE_PREDICATE(is_sps)\nNAL_HEADER_DERIVE_PREDICATE(is_pps)\nNAL_HEADER_DERIVE_PREDICATE(is_coded_slice_idr)\nNAL_HEADER_DERIVE_PREDICATE(is_coded_slice_non_idr)\n\n#undef NAL_HEADER_DERIVE_PREDICATE\n\nvoid SmolRTSP_NalHeader_serialize(\n    SmolRTSP_NalHeader self, uint8_t buffer[restrict]) {\n    match(self) {\n        of(SmolRTSP_NalHeader_H264, h) {\n            const uint8_t repr = SmolRTSP_H264NalHeader_serialize(*h);\n            buffer[0] = repr;\n        }\n        of(SmolRTSP_NalHeader_H265, h) {\n            const uint16_t repr = SmolRTSP_H265NalHeader_serialize(*h);\n            memcpy(buffer, &repr, sizeof repr);\n        }\n    }\n}\n\nvoid SmolRTSP_NalHeader_write_fu_header(\n    SmolRTSP_NalHeader self, uint8_t buffer[restrict], bool is_first_fragment,\n    bool is_last_fragment) {\n    match(self) {\n        of(SmolRTSP_NalHeader_H264, h) SmolRTSP_H264NalHeader_write_fu_header(\n            *h, buffer, is_first_fragment, is_last_fragment);\n        of(SmolRTSP_NalHeader_H265, h) SmolRTSP_H265NalHeader_write_fu_header(\n            *h, buffer, is_first_fragment, is_last_fragment);\n    }\n}\n\n// See <https://tools.ietf.org/html/rfc7798#section-4.4.3> (H.265),\n// <https://tools.ietf.org/html/rfc6184#section-5.8> (H.264).\nuint8_t smolrtsp_nal_fu_header(\n    bool is_first_fragment, bool is_last_fragment, uint8_t unit_type) {\n    /*\n     * H.264:\n     * +---------------+\n     * |0|1|2|3|4|5|6|7|\n     * +-+-+-+-+-+-+-+-+\n     * |S|E|R|  Type   |\n     * +---------------+\n     * */\n\n    /*\n     * H.265:\n     * +---------------+\n     * |0|1|2|3|4|5|6|7|\n     * +-+-+-+-+-+-+-+-+\n     * |S|E|  FuType   |\n     * +---------------+\n     */\n    uint8_t fu_header = (uint8_t)0b00000000;\n\n    if (is_first_fragment) {\n        fu_header |= (uint8_t)0b10000000;\n    }\n    if (is_last_fragment) {\n        fu_header |= (uint8_t)0b01000000;\n    }\n    fu_header += unit_type;\n\n    return fu_header;\n}\n\nstatic const uint8_t start_code_3b[] = {0x00, 0x00, 0x01},\n                     start_code_4b[] = {0x00, 0x00, 0x00, 0x01};\n\nSmolRTSP_NalStartCodeTester smolrtsp_determine_start_code(U8Slice99 data) {\n    if (smolrtsp_test_start_code_3b(data)) {\n        return smolrtsp_test_start_code_3b;\n    }\n\n    if (smolrtsp_test_start_code_4b(data)) {\n        return smolrtsp_test_start_code_4b;\n    }\n\n    return NULL;\n}\n\nsize_t smolrtsp_test_start_code_3b(U8Slice99 data) {\n    if (data.len < 3) {\n        return 0;\n    }\n    if (memcmp(data.ptr, start_code_3b, 3) == 0) {\n        return 3;\n    }\n\n    return 0;\n}\n\nsize_t smolrtsp_test_start_code_4b(U8Slice99 data) {\n    if (data.len < 4) {\n        return 0;\n    }\n    if (memcmp(data.ptr, start_code_4b, 4) == 0) {\n        return 4;\n    }\n\n    return 0;\n}\n"
  },
  {
    "path": "src/nal_transport.c",
    "content": "#include <smolrtsp/nal_transport.h>\n\n#include <assert.h>\n#include <stdbool.h>\n#include <stdlib.h>\n\n#include <alloca.h>\n\n#include <slice99.h>\n\nstatic int send_fragmentized_nal_data(\n    SmolRTSP_RtpTransport *t, SmolRTSP_RtpTimestamp ts, size_t max_packet_size,\n    SmolRTSP_NalUnit nalu);\nstatic int send_fu(\n    SmolRTSP_RtpTransport *t, SmolRTSP_RtpTimestamp ts, SmolRTSP_NalUnit fu,\n    bool is_first_fragment, bool is_last_fragment);\n\nSmolRTSP_NalTransportConfig SmolRTSP_NalTransportConfig_default(void) {\n    return (SmolRTSP_NalTransportConfig){\n        .max_h264_nalu_size = SMOLRTSP_MAX_H264_NALU_SIZE,\n        .max_h265_nalu_size = SMOLRTSP_MAX_H265_NALU_SIZE,\n    };\n}\n\nstruct SmolRTSP_NalTransport {\n    SmolRTSP_RtpTransport *transport;\n    SmolRTSP_NalTransportConfig config;\n};\n\nSmolRTSP_NalTransport *SmolRTSP_NalTransport_new(SmolRTSP_RtpTransport *t) {\n    assert(t);\n\n    return SmolRTSP_NalTransport_new_with_config(\n        t, SmolRTSP_NalTransportConfig_default());\n}\n\nSmolRTSP_NalTransport *SmolRTSP_NalTransport_new_with_config(\n    SmolRTSP_RtpTransport *t, SmolRTSP_NalTransportConfig config) {\n    assert(t);\n\n    SmolRTSP_NalTransport *self = malloc(sizeof *self);\n    assert(self);\n\n    self->transport = t;\n    self->config = config;\n\n    return self;\n}\n\nstatic void SmolRTSP_NalTransport_drop(VSelf) {\n    VSELF(SmolRTSP_NalTransport);\n    assert(self);\n\n    VTABLE(SmolRTSP_RtpTransport, SmolRTSP_Droppable).drop(self->transport);\n\n    free(self);\n}\n\nimplExtern(SmolRTSP_Droppable, SmolRTSP_NalTransport);\n\nbool SmolRTSP_NalTransport_is_full(SmolRTSP_NalTransport *self) {\n    return SmolRTSP_RtpTransport_is_full(self->transport);\n}\n\nint SmolRTSP_NalTransport_send_packet(\n    SmolRTSP_NalTransport *self, SmolRTSP_RtpTimestamp ts,\n    SmolRTSP_NalUnit nalu) {\n    assert(self);\n\n    const size_t max_packet_size = MATCHES(nalu.header, SmolRTSP_NalHeader_H264)\n                                       ? self->config.max_h264_nalu_size\n                                       : self->config.max_h265_nalu_size,\n                 nalu_size =\n                     SmolRTSP_NalHeader_size(nalu.header) + nalu.payload.len;\n\n    if (nalu_size < max_packet_size) {\n        const bool marker =\n            SmolRTSP_NalHeader_is_coded_slice_idr(nalu.header) ||\n            SmolRTSP_NalHeader_is_coded_slice_non_idr(nalu.header);\n\n        const size_t header_buf_size = SmolRTSP_NalHeader_size(nalu.header);\n        uint8_t *header_buf = alloca(header_buf_size);\n        SmolRTSP_NalHeader_serialize(nalu.header, header_buf);\n\n        return SmolRTSP_RtpTransport_send_packet(\n            self->transport, ts, marker,\n            U8Slice99_new(header_buf, header_buf_size), nalu.payload);\n    }\n\n    return send_fragmentized_nal_data(\n        self->transport, ts, max_packet_size, nalu);\n}\n\n// See <https://tools.ietf.org/html/rfc6184#section-5.8> (H.264),\n// <https://tools.ietf.org/html/rfc7798#section-4.4.3> (H.265).\nstatic int send_fragmentized_nal_data(\n    SmolRTSP_RtpTransport *t, SmolRTSP_RtpTimestamp ts, size_t max_packet_size,\n    SmolRTSP_NalUnit nalu) {\n    const size_t rem = nalu.payload.len % max_packet_size,\n                 packets_count = (nalu.payload.len - rem) / max_packet_size;\n\n    for (size_t packet_idx = 0; packet_idx < packets_count; packet_idx++) {\n        const bool is_first_fragment = 0 == packet_idx,\n                   is_last_fragment =\n                       0 == rem && (packets_count - 1 == packet_idx);\n\n        const U8Slice99 fu_data = U8Slice99_sub(\n            nalu.payload, packet_idx * max_packet_size,\n            is_last_fragment ? nalu.payload.len\n                             : (packet_idx + 1) * max_packet_size);\n        const SmolRTSP_NalUnit fu = {nalu.header, fu_data};\n\n        if (send_fu(t, ts, fu, is_first_fragment, is_last_fragment) == -1) {\n            return -1;\n        }\n    }\n\n    if (rem != 0) {\n        const U8Slice99 fu_data =\n            U8Slice99_advance(nalu.payload, packets_count * max_packet_size);\n        const SmolRTSP_NalUnit fu = {nalu.header, fu_data};\n        const bool is_first_fragment = 0 == packets_count,\n                   is_last_fragment = true;\n\n        if (send_fu(t, ts, fu, is_first_fragment, is_last_fragment) == -1) {\n            return -1;\n        }\n    }\n\n    return 0;\n}\n\nstatic int send_fu(\n    SmolRTSP_RtpTransport *t, SmolRTSP_RtpTimestamp ts, SmolRTSP_NalUnit fu,\n    bool is_first_fragment, bool is_last_fragment) {\n    const size_t fu_header_size = SmolRTSP_NalHeader_fu_size(fu.header);\n    U8Slice99 fu_header = U8Slice99_new(alloca(fu_header_size), fu_header_size);\n\n    SmolRTSP_NalHeader_write_fu_header(\n        fu.header, fu_header.ptr, is_first_fragment, is_last_fragment);\n\n    const bool marker = is_last_fragment;\n\n    return SmolRTSP_RtpTransport_send_packet(\n        t, ts, marker, fu_header, fu.payload);\n}\n"
  },
  {
    "path": "src/rtp_transport.c",
    "content": "#include <smolrtsp/rtp_transport.h>\n\n#include <smolrtsp/types/rtp.h>\n\n#include <assert.h>\n#include <stdlib.h>\n\n#include <alloca.h>\n#include <arpa/inet.h>\n\nstruct SmolRTSP_RtpTransport {\n    uint16_t seq_num;\n    uint32_t ssrc;\n    uint8_t payload_ty;\n    uint32_t clock_rate;\n    SmolRTSP_Transport transport;\n};\n\nstatic uint32_t\ncompute_timestamp(SmolRTSP_RtpTimestamp ts, uint32_t clock_rate);\n\nSmolRTSP_RtpTransport *SmolRTSP_RtpTransport_new(\n    SmolRTSP_Transport t, uint8_t payload_ty, uint32_t clock_rate) {\n    assert(t.self && t.vptr);\n\n    SmolRTSP_RtpTransport *self = malloc(sizeof *self);\n    assert(self);\n\n    self->seq_num = 0;\n    self->ssrc = (uint32_t)rand();\n    self->payload_ty = payload_ty;\n    self->clock_rate = clock_rate;\n    self->transport = t;\n\n    return self;\n}\n\nstatic void SmolRTSP_RtpTransport_drop(VSelf) {\n    VSELF(SmolRTSP_RtpTransport);\n    assert(self);\n\n    VCALL_SUPER(self->transport, SmolRTSP_Droppable, drop);\n\n    free(self);\n}\n\nimplExtern(SmolRTSP_Droppable, SmolRTSP_RtpTransport);\n\nint SmolRTSP_RtpTransport_send_packet(\n    SmolRTSP_RtpTransport *self, SmolRTSP_RtpTimestamp ts, bool marker,\n    U8Slice99 payload_header, U8Slice99 payload) {\n    assert(self);\n\n    const SmolRTSP_RtpHeader header = {\n        .version = 2,\n        .padding = false,\n        .extension = false,\n        .csrc_count = 0,\n        .marker = marker,\n        .payload_ty = self->payload_ty,\n        .sequence_number = htons(self->seq_num),\n        .timestamp = htobe32(compute_timestamp(ts, self->clock_rate)),\n        .ssrc = self->ssrc,\n        .csrc = NULL,\n        .extension_profile = htons(0),\n        .extension_payload_len = htons(0),\n        .extension_payload = NULL,\n    };\n\n    const size_t rtp_header_size = SmolRTSP_RtpHeader_size(header);\n    const U8Slice99 rtp_header = U8Slice99_new(\n        SmolRTSP_RtpHeader_serialize(header, alloca(rtp_header_size)),\n        rtp_header_size);\n\n    const SmolRTSP_IoVecSlice bufs =\n        (SmolRTSP_IoVecSlice)Slice99_typed_from_array((struct iovec[]){\n            smolrtsp_slice_to_iovec(rtp_header),\n            smolrtsp_slice_to_iovec(payload_header),\n            smolrtsp_slice_to_iovec(payload),\n        });\n\n    const int ret = VCALL(self->transport, transmit, bufs);\n    if (ret != -1) {\n        self->seq_num++;\n    }\n\n    return ret;\n}\n\nstatic uint32_t\ncompute_timestamp(SmolRTSP_RtpTimestamp ts, uint32_t clock_rate) {\n    match(ts) {\n        of(SmolRTSP_RtpTimestamp_Raw, raw_ts) {\n            return *raw_ts;\n        }\n        of(SmolRTSP_RtpTimestamp_SysClockUs, time_us) {\n            const uint64_t us_rem = *time_us % 1000,\n                           ms = (*time_us - us_rem) / 1000;\n            uint32_t clock_rate_kHz = clock_rate / 1000;\n            return ms * clock_rate_kHz +\n                   (uint32_t)(us_rem * ((double)clock_rate_kHz / 1000.0));\n        }\n    }\n\n    return 0;\n}\n\nbool SmolRTSP_RtpTransport_is_full(SmolRTSP_RtpTransport *self) {\n    return VCALL(self->transport, is_full);\n}\n"
  },
  {
    "path": "src/transport/tcp.c",
    "content": "#include <smolrtsp/transport.h>\n\n#include <assert.h>\n#include <stddef.h>\n#include <stdint.h>\n#include <stdlib.h>\n\n#include <arpa/inet.h>\n\n#include <slice99.h>\n\n#include <smolrtsp/util.h>\n\ntypedef struct {\n    SmolRTSP_Writer w;\n    int channel_id;\n    size_t max_buffer;\n} SmolRTSP_TcpTransport;\n\ndeclImpl(SmolRTSP_Transport, SmolRTSP_TcpTransport);\n\nSmolRTSP_Transport smolrtsp_transport_tcp(\n    SmolRTSP_Writer w, uint8_t channel_id, size_t max_buffer) {\n    assert(w.self && w.vptr);\n\n    SmolRTSP_TcpTransport *self = malloc(sizeof *self);\n    assert(self);\n\n    self->w = w;\n    self->channel_id = channel_id;\n    self->max_buffer = max_buffer;\n\n    return DYN(SmolRTSP_TcpTransport, SmolRTSP_Transport, self);\n}\n\nstatic void SmolRTSP_TcpTransport_drop(VSelf) {\n    VSELF(SmolRTSP_TcpTransport);\n    assert(self);\n\n    free(self);\n}\n\nimpl(SmolRTSP_Droppable, SmolRTSP_TcpTransport);\n\nstatic int SmolRTSP_TcpTransport_transmit(VSelf, SmolRTSP_IoVecSlice bufs) {\n    VSELF(SmolRTSP_TcpTransport);\n    assert(self);\n\n    const size_t total_bytes = SmolRTSP_IoVecSlice_len(bufs);\n\n    const uint32_t header =\n        smolrtsp_interleaved_header(self->channel_id, htons(total_bytes));\n\n    VCALL(self->w, lock);\n    ssize_t ret =\n        VCALL(self->w, write, CharSlice99_new((char *)&header, sizeof header));\n    if (ret != sizeof header) {\n        VCALL(self->w, unlock);\n        return -1;\n    }\n\n    for (size_t i = 0; i < bufs.len; i++) {\n        const CharSlice99 vec =\n            CharSlice99_new(bufs.ptr[i].iov_base, bufs.ptr[i].iov_len);\n        ret = VCALL(self->w, write, vec);\n        if (ret != (ssize_t)vec.len) {\n            VCALL(self->w, unlock);\n            return -1;\n        }\n    }\n    VCALL(self->w, unlock);\n\n    return 0;\n}\n\nstatic bool SmolRTSP_TcpTransport_is_full(VSelf) {\n    VSELF(SmolRTSP_TcpTransport);\n    assert(self);\n\n    return VCALL(self->w, filled) > self->max_buffer;\n}\n\nimpl(SmolRTSP_Transport, SmolRTSP_TcpTransport);\n"
  },
  {
    "path": "src/transport/udp.c",
    "content": "#include <smolrtsp/transport.h>\n\n#include <assert.h>\n#include <errno.h>\n#include <stddef.h>\n#include <stdlib.h>\n\n#include <arpa/inet.h>\n#include <netinet/in.h>\n#include <sys/socket.h>\n#include <sys/types.h>\n\n#define MAX_RETRANSMITS 10\n\ntypedef struct {\n    int fd;\n    char addr[128];\n    size_t len;\n} SmolRTSP_UdpTransport;\n\ndeclImpl(SmolRTSP_Transport, SmolRTSP_UdpTransport);\n\nstatic int send_packet(SmolRTSP_UdpTransport *self, struct msghdr message);\nstatic int\nnew_sockaddr(struct sockaddr *addr, int af, const void *ip, uint16_t port);\n\nSmolRTSP_Transport smolrtsp_transport_udp(int fd) {\n    assert(fd >= 0);\n\n    SmolRTSP_UdpTransport *self = malloc(sizeof *self);\n    assert(self);\n    self->fd = fd;\n    self->len = 0;\n\n    return DYN(SmolRTSP_UdpTransport, SmolRTSP_Transport, self);\n}\n\nSmolRTSP_Transport\nsmolrtsp_transport_udp_address(int fd, void *addr, size_t len) {\n    assert(fd >= 0);\n    assert(addr && len > 0);\n\n    SmolRTSP_UdpTransport *self = malloc(sizeof *self);\n    assert(self);\n    self->fd = fd;\n    self->len = len;\n    memcpy(&self->addr, addr, len);\n\n    return DYN(SmolRTSP_UdpTransport, SmolRTSP_Transport, self);\n}\n\nstatic void SmolRTSP_UdpTransport_drop(VSelf) {\n    VSELF(SmolRTSP_UdpTransport);\n    assert(self);\n\n    free(self);\n}\n\nimpl(SmolRTSP_Droppable, SmolRTSP_UdpTransport);\n\nstatic int SmolRTSP_UdpTransport_transmit(VSelf, SmolRTSP_IoVecSlice bufs) {\n    VSELF(SmolRTSP_UdpTransport);\n    assert(self);\n\n    const struct msghdr msg = {\n        .msg_name = self->addr,\n        .msg_namelen = self->len,\n        .msg_iov = bufs.ptr,\n        .msg_iovlen = bufs.len,\n        .msg_control = NULL,\n        .msg_controllen = 0,\n        .msg_flags = 0,\n    };\n\n    return send_packet(self, msg);\n}\n\nstatic bool SmolRTSP_UdpTransport_is_full(VSelf) {\n    VSELF(SmolRTSP_UdpTransport);\n    (void)self;\n\n    return false;\n}\n\nimpl(SmolRTSP_Transport, SmolRTSP_UdpTransport);\n\nstatic int send_packet(SmolRTSP_UdpTransport *self, struct msghdr message) {\n    // Try to retransmit a packet several times on `EMSGSIZE`. The kernel\n    // will fragment an IP packet because if `IP_PMTUDISC_WANT` is set.\n    size_t i = MAX_RETRANSMITS;\n    do {\n        const ssize_t ret = sendmsg(self->fd, &message, 0);\n\n        if (ret != -1) {\n            return 0;\n        }\n        if (EMSGSIZE != errno) {\n            return -1;\n        }\n\n        assert(-1 == ret);\n        assert(EMSGSIZE == errno);\n\n        // Try to retransmit the packet one more time.\n        i--;\n    } while (i > 0);\n\n    return -1;\n}\n\nint smolrtsp_dgram_socket(int af, const void *restrict addr, uint16_t port) {\n    struct sockaddr_storage dest;\n    memset(&dest, '\\0', sizeof dest);\n    if (new_sockaddr((struct sockaddr *)&dest, af, addr, port) == -1) {\n        return -1;\n    }\n\n    int fd;\n    if ((fd = socket(af, SOCK_DGRAM, 0)) == -1) {\n        goto fail;\n    }\n\n    if (connect(\n            fd, (const struct sockaddr *)&dest,\n            AF_INET == af ? sizeof(struct sockaddr_in)\n                          : sizeof(struct sockaddr_in6)) == -1) {\n        perror(\"connect\");\n        goto fail;\n    }\n\n    const int enable_pmtud = 1;\n    if (setsockopt(\n            fd, IPPROTO_IP, IP_PMTUDISC_WANT, &enable_pmtud,\n            sizeof enable_pmtud) == -1) {\n        perror(\"setsockopt IP_PMTUDISC_WANT\");\n        goto fail;\n    }\n\n    return fd;\n\nfail:\n    close(fd);\n    return -1;\n}\n\nstatic int\nnew_sockaddr(struct sockaddr *addr, int af, const void *ip, uint16_t port) {\n    switch (af) {\n    case AF_INET: {\n        struct sockaddr_in *addr_in = (struct sockaddr_in *)addr;\n        addr_in->sin_family = AF_INET;\n        memcpy(&addr_in->sin_addr, ip, sizeof(struct in_addr));\n        addr_in->sin_port = htons(port);\n        return 0;\n    }\n    case AF_INET6: {\n        struct sockaddr_in6 *addr_in6 = (struct sockaddr_in6 *)addr;\n        addr_in6->sin6_family = AF_INET6;\n        memcpy(&addr_in6->sin6_addr, ip, sizeof(struct in6_addr));\n        addr_in6->sin6_port = htons(port);\n        return 0;\n    }\n    default:\n        errno = EAFNOSUPPORT;\n        return -1;\n    }\n}\n\nvoid *smolrtsp_sockaddr_ip(const struct sockaddr *restrict addr) {\n    assert(addr);\n\n    switch (addr->sa_family) {\n    case AF_INET:\n        return (void *)&((struct sockaddr_in *)addr)->sin_addr;\n    case AF_INET6:\n        return (void *)&((struct sockaddr_in6 *)addr)->sin6_addr;\n    default:\n        return NULL;\n    }\n}\n"
  },
  {
    "path": "src/types/error.c",
    "content": "#include <smolrtsp/types/error.h>\n\nconst char *SmolRTSP_ParseType_str(SmolRTSP_ParseType self) {\n    switch (self) {\n    case SmolRTSP_ParseType_Int:\n        return \"Integer\";\n    case SmolRTSP_ParseType_Ident:\n        return \"Identifier\";\n    case SmolRTSP_ParseType_HeaderName:\n        return \"Header name\";\n    default:\n        return \"Unknown\";\n    }\n}\n\n#define MAX_STR 10\n#define TRUNCATE_STR(str)                                                      \\\n    ((str).len <= MAX_STR ? (str) : CharSlice99_sub((str), 0, MAX_STR))\n\nint SmolRTSP_ParseError_print(SmolRTSP_ParseError self, SmolRTSP_Writer w) {\n    assert(w.self && w.vptr);\n\n    match(self) {\n        of(SmolRTSP_ParseError_ContentLength, value) {\n            return SMOLRTSP_WRITE_SLICES(\n                w, {\n                       CharSlice99_from_str(\"Invalid Content-Length `\"),\n                       TRUNCATE_STR(*value),\n                       CharSlice99_from_str(\"`\"),\n                   });\n        }\n        of(SmolRTSP_ParseError_StrMismatch, expected, actual) {\n            return SMOLRTSP_WRITE_SLICES(\n                w, {\n                       CharSlice99_from_str(\"String mismatch: expected `\"),\n                       TRUNCATE_STR(*expected),\n                       CharSlice99_from_str(\"`, found `\"),\n                       TRUNCATE_STR(*actual),\n                       CharSlice99_from_str(\"`\"),\n                   });\n        }\n        of(SmolRTSP_ParseError_TypeMismatch, kind, str) {\n            return SMOLRTSP_WRITE_SLICES(\n                w,\n                {\n                    CharSlice99_from_str(\"Type mismatch: expected \"),\n                    CharSlice99_from_str((char *)SmolRTSP_ParseType_str(*kind)),\n                    CharSlice99_from_str(\", found `\"),\n                    TRUNCATE_STR(*str),\n                    CharSlice99_from_str(\"`\"),\n                });\n        }\n        of(SmolRTSP_ParseError_HeaderMapOverflow) {\n            return VCALL(\n                w, write,\n                CharSlice99_from_str(\n                    \"Not enough space left in the header map\"));\n        }\n        of(SmolRTSP_ParseError_MissingCSeq) {\n            return VCALL(w, write, CharSlice99_from_str(\"Missing CSeq\"));\n        }\n        of(SmolRTSP_ParseError_InvalidCSeq, value) {\n            return SMOLRTSP_WRITE_SLICES(\n                w, {\n                       CharSlice99_from_str(\"Invalid CSeq `\"),\n                       TRUNCATE_STR(*value),\n                       CharSlice99_from_str(\"`\"),\n                   });\n        }\n    }\n\n    return -1;\n}\n\n#undef MAX_STR\n#undef TRUNCATE_STR\n\nbool SmolRTSP_ParseStatus_is_complete(SmolRTSP_ParseStatus self) {\n    return MATCHES(self, SmolRTSP_ParseStatus_Complete);\n}\n\nbool SmolRTSP_ParseStatus_is_partial(SmolRTSP_ParseStatus self) {\n    return MATCHES(self, SmolRTSP_ParseStatus_Partial);\n}\n\nSmolRTSP_ParseResult SmolRTSP_ParseResult_partial(void) {\n    return SmolRTSP_ParseResult_Success(SmolRTSP_ParseStatus_Partial());\n}\n\nSmolRTSP_ParseResult SmolRTSP_ParseResult_complete(size_t offset) {\n    return SmolRTSP_ParseResult_Success(SmolRTSP_ParseStatus_Complete(offset));\n}\n\nbool SmolRTSP_ParseResult_is_success(SmolRTSP_ParseResult self) {\n    return MATCHES(self, SmolRTSP_ParseResult_Success);\n}\n\nbool SmolRTSP_ParseResult_is_failure(SmolRTSP_ParseResult self) {\n    return !SmolRTSP_ParseResult_is_success(self);\n}\n\nbool SmolRTSP_ParseResult_is_partial(SmolRTSP_ParseResult self) {\n    // Used to workaround `-Wreturn-type`.\n    bool result = true;\n\n    match(self) {\n        of(SmolRTSP_ParseResult_Success, status) result =\n            SmolRTSP_ParseStatus_is_partial(*status);\n        otherwise result = false;\n    }\n\n    return result;\n}\n\nbool SmolRTSP_ParseResult_is_complete(SmolRTSP_ParseResult self) {\n    // Used to workaround `-Wreturn-type`.\n    bool result = true;\n\n    match(self) {\n        of(SmolRTSP_ParseResult_Success, status) result =\n            SmolRTSP_ParseStatus_is_complete(*status);\n        otherwise result = false;\n    }\n\n    return result;\n}\n"
  },
  {
    "path": "src/types/header.c",
    "content": "#include <smolrtsp/types/header.h>\n\n#include \"parsing.h\"\n#include <smolrtsp/util.h>\n\n#include <assert.h>\n#include <string.h>\n\nssize_t SmolRTSP_Header_serialize(\n    const SmolRTSP_Header *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    return SMOLRTSP_WRITE_SLICES(\n        w, {\n               self->key,\n               CharSlice99_from_str(\": \"),\n               self->value,\n               SMOLRTSP_CRLF,\n           });\n}\n\nSmolRTSP_ParseResult\nSmolRTSP_Header_parse(SmolRTSP_Header *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    SmolRTSP_Header header;\n\n    MATCH(smolrtsp_match_whitespaces(input));\n    header.key = input;\n    MATCH(smolrtsp_match_header_name(input));\n    header.key = CharSlice99_from_ptrdiff(header.key.ptr, input.ptr);\n\n    MATCH(smolrtsp_match_whitespaces(input));\n    MATCH(smolrtsp_match_char(input, ':'));\n    MATCH(smolrtsp_match_whitespaces(input));\n\n    header.value = input;\n    MATCH(smolrtsp_match_until_crlf(input));\n    header.value =\n        CharSlice99_from_ptrdiff(header.value.ptr, input.ptr - strlen(\"\\r\\n\"));\n\n    *self = header;\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_Header_eq(\n    const SmolRTSP_Header *restrict lhs, const SmolRTSP_Header *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return CharSlice99_primitive_eq(lhs->key, rhs->key) &&\n           CharSlice99_primitive_eq(lhs->value, rhs->value);\n}\n"
  },
  {
    "path": "src/types/header_map.c",
    "content": "#include <smolrtsp/types/header_map.h>\n\n#include \"../macros.h\"\n#include \"parsing.h\"\n#include <smolrtsp/util.h>\n\n#include <assert.h>\n#include <string.h>\n\n#include <alloca.h>\n\nSmolRTSP_HeaderMap SmolRTSP_HeaderMap_empty(void) {\n    SmolRTSP_HeaderMap self;\n    memset(self.headers, '\\0', sizeof self.headers);\n    self.len = 0;\n    return self;\n}\n\nbool SmolRTSP_HeaderMap_find(\n    const SmolRTSP_HeaderMap *restrict self, CharSlice99 key,\n    CharSlice99 *restrict value) {\n    assert(self);\n\n    for (size_t i = 0; i < self->len; i++) {\n        if (CharSlice99_primitive_eq(self->headers[i].key, key)) {\n            if (value != NULL) {\n                *value = self->headers[i].value;\n            }\n            return true;\n        }\n    }\n\n    return false;\n}\n\nbool SmolRTSP_HeaderMap_contains_key(\n    const SmolRTSP_HeaderMap *restrict self, CharSlice99 key) {\n    assert(self);\n    return SmolRTSP_HeaderMap_find(self, key, NULL);\n}\n\nvoid SmolRTSP_HeaderMap_append(\n    SmolRTSP_HeaderMap *restrict self, SmolRTSP_Header h) {\n    assert(self);\n    assert(!SmolRTSP_HeaderMap_is_full(self));\n\n    self->headers[self->len] = h;\n    self->len++;\n}\n\nssize_t SmolRTSP_HeaderMap_serialize(\n    const SmolRTSP_HeaderMap *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    ssize_t result = 0;\n\n    for (size_t i = 0; i < self->len; i++) {\n        CHK_WRITE_ERR(result, SmolRTSP_Header_serialize(&self->headers[i], w));\n    }\n\n    CHK_WRITE_ERR(result, VCALL(w, write, SMOLRTSP_CRLF));\n\n    return result;\n}\n\nSmolRTSP_ParseResult\nSmolRTSP_HeaderMap_parse(SmolRTSP_HeaderMap *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    self->len = 0;\n\n    while (true) {\n        if (CharSlice99_primitive_ends_with(\n                input, CharSlice99_from_str(\"\\r\"))) {\n            return SmolRTSP_ParseResult_partial();\n        }\n        if (CharSlice99_primitive_starts_with(input, SMOLRTSP_CRLF)) {\n            return SmolRTSP_ParseResult_complete(\n                (input.ptr - backup.ptr) + SMOLRTSP_CRLF.len);\n        }\n        if (SmolRTSP_HeaderMap_is_full(self)) {\n            return SmolRTSP_ParseResult_Failure(\n                SmolRTSP_ParseError_HeaderMapOverflow());\n        }\n\n        SmolRTSP_Header header = {0};\n        MATCH(SmolRTSP_Header_parse(&header, input));\n        SmolRTSP_HeaderMap_append(self, header);\n    }\n}\n\nbool SmolRTSP_HeaderMap_eq(\n    const SmolRTSP_HeaderMap *restrict lhs,\n    const SmolRTSP_HeaderMap *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    if (lhs->len != rhs->len) {\n        return false;\n    }\n\n    const size_t len = lhs->len;\n\n    for (size_t i = 0; i < len; i++) {\n        if (!SmolRTSP_Header_eq(&lhs->headers[i], &rhs->headers[i])) {\n            return false;\n        }\n    }\n\n    return true;\n}\n\nbool SmolRTSP_HeaderMap_is_full(const SmolRTSP_HeaderMap *restrict self) {\n    assert(self);\n    return SMOLRTSP_HEADER_MAP_CAPACITY == self->len;\n}\n\nint smolrtsp_scanf_header(\n    const SmolRTSP_HeaderMap *restrict headers, CharSlice99 key,\n    const char *restrict fmt, ...) {\n    assert(headers);\n    assert(fmt);\n\n    CharSlice99 val;\n    const bool val_found = SmolRTSP_HeaderMap_find(headers, key, &val);\n    if (!val_found) {\n        return -1;\n    }\n\n    va_list ap;\n    va_start(ap, fmt);\n    const int ret = vsscanf(CharSlice99_alloca_c_str(val), fmt, ap);\n    va_end(ap);\n\n    return ret;\n}\n"
  },
  {
    "path": "src/types/message_body.c",
    "content": "#include <smolrtsp/types/message_body.h>\n\n#include \"parsing.h\"\n\n#include <assert.h>\n\nSmolRTSP_ParseResult SmolRTSP_MessageBody_parse(\n    SmolRTSP_MessageBody *restrict self, CharSlice99 input,\n    size_t content_length) {\n    assert(self);\n\n    if (input.len < content_length) {\n        return SmolRTSP_ParseResult_partial();\n    }\n\n    if (0 == content_length) {\n        *self = CharSlice99_empty();\n        const size_t offset = 0;\n        return SmolRTSP_ParseResult_complete(offset);\n    }\n\n    *self = CharSlice99_new(input.ptr, content_length);\n\n    return SmolRTSP_ParseResult_complete(content_length);\n}\n\nSmolRTSP_MessageBody SmolRTSP_MessageBody_empty(void) {\n    return CharSlice99_empty();\n}\n\nbool SmolRTSP_MessageBody_eq(\n    const SmolRTSP_MessageBody *restrict lhs,\n    const SmolRTSP_MessageBody *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return CharSlice99_primitive_eq(*lhs, *rhs);\n}\n"
  },
  {
    "path": "src/types/method.c",
    "content": "#include <smolrtsp/types/method.h>\n\n#include \"parsing.h\"\n\n#include <assert.h>\n\nSmolRTSP_ParseResult\nSmolRTSP_Method_parse(SmolRTSP_Method *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    MATCH(smolrtsp_match_whitespaces(input));\n    CharSlice99 method = input;\n    MATCH(smolrtsp_match_ident(input));\n    method = CharSlice99_from_ptrdiff(method.ptr, input.ptr);\n\n    *self = method;\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_Method_eq(\n    const SmolRTSP_Method *restrict lhs, const SmolRTSP_Method *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return CharSlice99_primitive_eq(*lhs, *rhs);\n}\n"
  },
  {
    "path": "src/types/parsing.c",
    "content": "#include \"parsing.h\"\n\n#include <assert.h>\n#include <ctype.h>\n#include <string.h>\n\nSmolRTSP_ParseResult smolrtsp_match_until(\n    CharSlice99 input, bool (*matcher)(char c, void *ctx), void *ctx) {\n    assert(matcher);\n\n    size_t offset = 0;\n\n    while (!CharSlice99_is_empty(input)) {\n        if (!matcher(*(char *)input.ptr, ctx)) {\n            return SmolRTSP_ParseResult_complete(offset);\n        }\n\n        input = CharSlice99_advance(input, 1);\n        offset++;\n    }\n\n    return SmolRTSP_ParseResult_partial();\n}\n\nstatic bool whitespace_matcher(char c, void *ctx) {\n    (void)ctx;\n    return c == ' ';\n}\n\nstatic bool non_whitespace_matcher(char c, void *ctx) {\n    (void)ctx;\n    return !whitespace_matcher(c, NULL);\n}\n\nstatic bool numeric_matcher(char c, void *ctx) {\n    (void)ctx;\n    return isdigit(c);\n}\n\nstatic bool ident_matcher(char c, void *ctx) {\n    (void)ctx;\n    return isalnum(c) || c == '_';\n}\n\nstatic bool header_name_char_matcher(char c, void *ctx) {\n    (void)ctx;\n    return isalpha(c) || c == '-';\n}\n\nstatic bool char_matcher(char c, void *ctx) {\n    const char expected = *(const char *)ctx;\n    return c == expected;\n}\n\nSmolRTSP_ParseResult\nsmolrtsp_match_until_str(CharSlice99 input, const char *restrict str) {\n    assert(str);\n\n    const size_t str_len = strlen(str);\n    assert(str_len > 0);\n\n    size_t offset = 0;\n\n    for (size_t i = 0; i < input.len; i++) {\n        if (input.len - i < str_len) {\n            return SmolRTSP_ParseResult_partial();\n        }\n\n        if (memcmp(input.ptr + i, str, str_len) == 0) {\n            return SmolRTSP_ParseResult_complete(offset + str_len);\n        }\n\n        offset++;\n    }\n\n    return SmolRTSP_ParseResult_partial();\n}\n\nSmolRTSP_ParseResult smolrtsp_match_until_crlf(CharSlice99 input) {\n    return smolrtsp_match_until_str(input, \"\\r\\n\");\n}\n\nSmolRTSP_ParseResult smolrtsp_match_until_double_crlf(CharSlice99 input) {\n    return smolrtsp_match_until_str(input, \"\\r\\n\\r\\n\");\n}\n\nSmolRTSP_ParseResult smolrtsp_match_char(CharSlice99 input, char c) {\n    return smolrtsp_match_until(input, char_matcher, &c);\n}\n\nSmolRTSP_ParseResult\nsmolrtsp_match_str(CharSlice99 input, const char *restrict str) {\n    assert(str);\n\n    const size_t str_len = strlen(str);\n\n    size_t offset = 0;\n\n    const size_t min_len = input.len < str_len ? input.len : str_len;\n\n    const bool are_coinciding = memcmp(input.ptr, str, min_len) == 0;\n    if (!are_coinciding) {\n        CharSlice99 expected = CharSlice99_from_str((char *)str),\n                    actual = CharSlice99_sub(input, 0, min_len);\n        return SmolRTSP_ParseResult_Failure(\n            SmolRTSP_ParseError_StrMismatch(expected, actual));\n    }\n\n    if (input.len < str_len) {\n        return SmolRTSP_ParseResult_partial();\n    }\n\n    input = CharSlice99_advance(input, str_len);\n    offset += str_len;\n    return SmolRTSP_ParseResult_complete(offset);\n}\n\nSmolRTSP_ParseResult smolrtsp_match_whitespaces(CharSlice99 input) {\n    return smolrtsp_match_until(input, whitespace_matcher, NULL);\n}\n\nSmolRTSP_ParseResult smolrtsp_match_non_whitespaces(CharSlice99 input) {\n    return smolrtsp_match_until(input, non_whitespace_matcher, NULL);\n}\n\n// TODO: refactor the following functions.\n\nSmolRTSP_ParseResult smolrtsp_match_numeric(CharSlice99 input) {\n    if (!numeric_matcher(input.ptr[0], NULL)) {\n        return SmolRTSP_ParseResult_Failure(\n            SmolRTSP_ParseError_TypeMismatch(SmolRTSP_ParseType_Int, input));\n    }\n\n    return smolrtsp_match_until(input, numeric_matcher, NULL);\n}\n\nSmolRTSP_ParseResult smolrtsp_match_ident(CharSlice99 input) {\n    if (!ident_matcher(input.ptr[0], NULL)) {\n        return SmolRTSP_ParseResult_Failure(\n            SmolRTSP_ParseError_TypeMismatch(SmolRTSP_ParseType_Ident, input));\n    }\n\n    return smolrtsp_match_until(input, ident_matcher, NULL);\n}\n\nSmolRTSP_ParseResult smolrtsp_match_header_name(CharSlice99 input) {\n    if (!header_name_char_matcher(input.ptr[0], NULL)) {\n        return SmolRTSP_ParseResult_Failure(SmolRTSP_ParseError_TypeMismatch(\n            SmolRTSP_ParseType_HeaderName, input));\n    }\n\n    return smolrtsp_match_until(input, header_name_char_matcher, NULL);\n}\n"
  },
  {
    "path": "src/types/parsing.h",
    "content": "#pragma once\n\n#include <smolrtsp/types/error.h>\n\n#include <stdbool.h>\n#include <stddef.h>\n#include <stdint.h>\n\n#include <datatype99.h>\n#include <slice99.h>\n\n#define MATCH(parse_expr)                                                      \\\n    do {                                                                       \\\n        const SmolRTSP_ParseResult parse_res_var = parse_expr;                 \\\n                                                                               \\\n        match(parse_res_var) {                                                 \\\n            of(SmolRTSP_ParseResult_Success, status) {                         \\\n                match(*status) {                                               \\\n                    of(SmolRTSP_ParseStatus_Complete, offset) input =          \\\n                        CharSlice99_advance(input, *offset);                   \\\n                    otherwise return parse_res_var;                            \\\n                }                                                              \\\n            }                                                                  \\\n            of(SmolRTSP_ParseResult_Failure, err) {                            \\\n                return SmolRTSP_ParseResult_Failure(*err);                     \\\n            }                                                                  \\\n        }                                                                      \\\n    } while (0)\n\n/**\n * Consume @p input until @p matcher returns false.\n */\nSmolRTSP_ParseResult smolrtsp_match_until(\n    CharSlice99 input, bool (*matcher)(char c, void *ctx), void *ctx);\n\nSmolRTSP_ParseResult\nsmolrtsp_match_until_str(CharSlice99 input, const char *restrict str);\n\nSmolRTSP_ParseResult smolrtsp_match_until_crlf(CharSlice99 input);\nSmolRTSP_ParseResult smolrtsp_match_until_double_crlf(CharSlice99 input);\nSmolRTSP_ParseResult smolrtsp_match_char(CharSlice99 input, char c);\nSmolRTSP_ParseResult\nsmolrtsp_match_str(CharSlice99 input, const char *restrict str);\nSmolRTSP_ParseResult smolrtsp_match_whitespaces(CharSlice99 input);\nSmolRTSP_ParseResult smolrtsp_match_non_whitespaces(CharSlice99 input);\nSmolRTSP_ParseResult smolrtsp_match_numeric(CharSlice99 input);\nSmolRTSP_ParseResult smolrtsp_match_ident(CharSlice99 input);\nSmolRTSP_ParseResult smolrtsp_match_header_name(CharSlice99 input);\n"
  },
  {
    "path": "src/types/reason_phrase.c",
    "content": "#include <smolrtsp/types/reason_phrase.h>\n\n#include \"parsing.h\"\n\n#include <assert.h>\n\nSmolRTSP_ParseResult SmolRTSP_ReasonPhrase_parse(\n    SmolRTSP_ReasonPhrase *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    MATCH(smolrtsp_match_whitespaces(input));\n    CharSlice99 phrase = input;\n    MATCH(smolrtsp_match_until_crlf(input));\n    phrase = CharSlice99_from_ptrdiff(phrase.ptr, input.ptr - strlen(\"\\r\\n\"));\n\n    *self = phrase;\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_ReasonPhrase_eq(\n    const SmolRTSP_ReasonPhrase *restrict lhs,\n    const SmolRTSP_ReasonPhrase *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return CharSlice99_primitive_eq(*lhs, *rhs);\n}\n"
  },
  {
    "path": "src/types/request.c",
    "content": "#include <smolrtsp/types/request.h>\n\n#include \"../macros.h\"\n#include \"parsing.h\"\n#include <smolrtsp/util.h>\n\n#include <assert.h>\n#include <inttypes.h>\n\n#include <alloca.h>\n\n#include <slice99.h>\n\nSmolRTSP_Request SmolRTSP_Request_uninit(void) {\n    SmolRTSP_Request self;\n    memset(&self, '\\0', sizeof self);\n    self.header_map = SmolRTSP_HeaderMap_empty();\n    return self;\n}\n\nssize_t SmolRTSP_Request_serialize(\n    const SmolRTSP_Request *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    ssize_t result = 0;\n\n    CHK_WRITE_ERR(result, SmolRTSP_RequestLine_serialize(&self->start_line, w));\n\n    if (!SmolRTSP_HeaderMap_contains_key(\n            &self->header_map, SMOLRTSP_HEADER_C_SEQ)) {\n        const SmolRTSP_Header cseq = {\n            SMOLRTSP_HEADER_C_SEQ,\n            CharSlice99_alloca_fmt(\"%\" PRIu32, self->cseq),\n        };\n        CHK_WRITE_ERR(result, SmolRTSP_Header_serialize(&cseq, w));\n    }\n\n    if (!SmolRTSP_HeaderMap_contains_key(\n            &self->header_map, SMOLRTSP_HEADER_CONTENT_LENGTH) &&\n        !CharSlice99_is_empty(self->body)) {\n        const SmolRTSP_Header content_length = {\n            SMOLRTSP_HEADER_CONTENT_LENGTH,\n            CharSlice99_alloca_fmt(\"%zd\", self->body.len),\n        };\n        CHK_WRITE_ERR(result, SmolRTSP_Header_serialize(&content_length, w));\n    }\n\n    CHK_WRITE_ERR(result, SmolRTSP_HeaderMap_serialize(&self->header_map, w));\n    if (!CharSlice99_is_empty(self->body)) {\n        CHK_WRITE_ERR(result, VCALL(w, write, self->body));\n    }\n\n    return result;\n}\n\nSmolRTSP_ParseResult\nSmolRTSP_Request_parse(SmolRTSP_Request *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    // TODO: implement proper parsing of interleaved binary data.\n    for (;;) {\n        if (input.len < sizeof(uint32_t)) {\n            return SmolRTSP_ParseResult_partial();\n        }\n\n        if ('$' == input.ptr[0]) {\n            uint8_t channel_id = 0;\n            uint16_t payload_len = 0;\n            smolrtsp_parse_interleaved_header(\n                (const uint8_t *)input.ptr, &channel_id, &payload_len);\n\n            input = CharSlice99_advance(input, sizeof(uint32_t));\n\n            if (input.len < (size_t)payload_len) {\n                return SmolRTSP_ParseResult_partial();\n            }\n            input = CharSlice99_advance(input, (size_t)payload_len);\n        } else {\n            break;\n        }\n    }\n\n    MATCH(SmolRTSP_RequestLine_parse(&self->start_line, input));\n    MATCH(SmolRTSP_HeaderMap_parse(&self->header_map, input));\n\n    CharSlice99 content_length;\n    size_t content_length_int = 0;\n    const bool content_length_found = SmolRTSP_HeaderMap_find(\n        &self->header_map, SMOLRTSP_HEADER_CONTENT_LENGTH, &content_length);\n\n    if (content_length_found) {\n        if (sscanf(\n                CharSlice99_alloca_c_str(content_length), \"%zd\",\n                &content_length_int) != 1) {\n            return SmolRTSP_ParseResult_Failure(\n                SmolRTSP_ParseError_ContentLength(content_length));\n        }\n    }\n\n    MATCH(SmolRTSP_MessageBody_parse(&self->body, input, content_length_int));\n\n    CharSlice99 cseq_value;\n    const bool cseq_found = SmolRTSP_HeaderMap_find(\n        &self->header_map, SMOLRTSP_HEADER_C_SEQ, &cseq_value);\n    if (!cseq_found) {\n        return SmolRTSP_ParseResult_Failure(SmolRTSP_ParseError_MissingCSeq());\n    }\n\n    uint32_t cseq;\n    if (sscanf(CharSlice99_alloca_c_str(cseq_value), \"%\" SCNu32, &cseq) != 1) {\n        return SmolRTSP_ParseResult_Failure(\n            SmolRTSP_ParseError_InvalidCSeq(cseq_value));\n    }\n\n    self->cseq = cseq;\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_Request_eq(\n    const SmolRTSP_Request *restrict lhs,\n    const SmolRTSP_Request *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return SmolRTSP_RequestLine_eq(&lhs->start_line, &rhs->start_line) &&\n           SmolRTSP_HeaderMap_eq(&lhs->header_map, &rhs->header_map) &&\n           SmolRTSP_MessageBody_eq(&lhs->body, &rhs->body) &&\n           lhs->cseq == rhs->cseq;\n}\n"
  },
  {
    "path": "src/types/request_line.c",
    "content": "#include <smolrtsp/types/request_line.h>\n\n#include \"../macros.h\"\n#include \"parsing.h\"\n#include <smolrtsp/util.h>\n\n#include <assert.h>\n#include <string.h>\n\nssize_t SmolRTSP_RequestLine_serialize(\n    const SmolRTSP_RequestLine *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    ssize_t result = 0;\n\n    CHK_WRITE_ERR(result, VCALL(w, write, self->method));\n    CHK_WRITE_ERR(result, VCALL(w, write, CharSlice99_from_str(\" \")));\n    CHK_WRITE_ERR(result, VCALL(w, write, self->uri));\n    CHK_WRITE_ERR(result, VCALL(w, write, CharSlice99_from_str(\" \")));\n    CHK_WRITE_ERR(result, SmolRTSP_RtspVersion_serialize(&self->version, w));\n    CHK_WRITE_ERR(result, VCALL(w, write, SMOLRTSP_CRLF));\n\n    return result;\n}\n\nSmolRTSP_ParseResult SmolRTSP_RequestLine_parse(\n    SmolRTSP_RequestLine *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    MATCH(SmolRTSP_Method_parse(&self->method, input));\n    MATCH(SmolRTSP_RequestUri_parse(&self->uri, input));\n    MATCH(SmolRTSP_RtspVersion_parse(&self->version, input));\n    MATCH(smolrtsp_match_str(input, \"\\r\\n\"));\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_RequestLine_eq(\n    const SmolRTSP_RequestLine *restrict lhs,\n    const SmolRTSP_RequestLine *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return SmolRTSP_Method_eq(&lhs->method, &rhs->method) &&\n           SmolRTSP_RequestUri_eq(&lhs->uri, &rhs->uri) &&\n           SmolRTSP_RtspVersion_eq(&lhs->version, &rhs->version);\n}\n"
  },
  {
    "path": "src/types/request_uri.c",
    "content": "#include <smolrtsp/types/request_uri.h>\n\n#include \"parsing.h\"\n\n#include <assert.h>\n\nSmolRTSP_ParseResult SmolRTSP_RequestUri_parse(\n    SmolRTSP_RequestUri *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    MATCH(smolrtsp_match_whitespaces(input));\n    CharSlice99 uri = input;\n    MATCH(smolrtsp_match_non_whitespaces(input));\n    uri = CharSlice99_from_ptrdiff(uri.ptr, input.ptr);\n\n    *self = uri;\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_RequestUri_eq(\n    const SmolRTSP_RequestUri *restrict lhs,\n    const SmolRTSP_RequestUri *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return CharSlice99_primitive_eq(*lhs, *rhs);\n}\n"
  },
  {
    "path": "src/types/response.c",
    "content": "#include <smolrtsp/types/response.h>\n#include <smolrtsp/util.h>\n\n#include \"../macros.h\"\n#include \"parsing.h\"\n\n#include <assert.h>\n#include <inttypes.h>\n\n#include <alloca.h>\n\n#include <slice99.h>\n\nSmolRTSP_Response SmolRTSP_Response_uninit(void) {\n    SmolRTSP_Response self;\n    memset(&self, '\\0', sizeof self);\n    self.header_map = SmolRTSP_HeaderMap_empty();\n    return self;\n}\n\nssize_t SmolRTSP_Response_serialize(\n    const SmolRTSP_Response *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    ssize_t result = 0;\n\n    CHK_WRITE_ERR(\n        result, SmolRTSP_ResponseLine_serialize(&self->start_line, w));\n\n    if (!SmolRTSP_HeaderMap_contains_key(\n            &self->header_map, SMOLRTSP_HEADER_C_SEQ)) {\n        const SmolRTSP_Header cseq = {\n            SMOLRTSP_HEADER_C_SEQ,\n            CharSlice99_alloca_fmt(\"%\" PRIu32, self->cseq),\n        };\n        CHK_WRITE_ERR(result, SmolRTSP_Header_serialize(&cseq, w));\n    }\n\n    if (!SmolRTSP_HeaderMap_contains_key(\n            &self->header_map, SMOLRTSP_HEADER_CONTENT_LENGTH) &&\n        !CharSlice99_is_empty(self->body)) {\n        const SmolRTSP_Header content_length = {\n            SMOLRTSP_HEADER_CONTENT_LENGTH,\n            CharSlice99_alloca_fmt(\"%zd\", self->body.len),\n        };\n        CHK_WRITE_ERR(result, SmolRTSP_Header_serialize(&content_length, w));\n    }\n\n    CHK_WRITE_ERR(result, SmolRTSP_HeaderMap_serialize(&self->header_map, w));\n    if (!CharSlice99_is_empty(self->body)) {\n        CHK_WRITE_ERR(result, VCALL(w, write, self->body));\n    }\n\n    return result;\n}\n\nSmolRTSP_ParseResult\nSmolRTSP_Response_parse(SmolRTSP_Response *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    // TODO: implement proper parsing of interleaved binary data.\n    for (;;) {\n        if (input.len < sizeof(uint32_t)) {\n            return SmolRTSP_ParseResult_partial();\n        }\n\n        if ('$' == input.ptr[0]) {\n            uint8_t channel_id = 0;\n            uint16_t payload_len = 0;\n            smolrtsp_parse_interleaved_header(\n                (const uint8_t *)input.ptr, &channel_id, &payload_len);\n\n            input = CharSlice99_advance(input, sizeof(uint32_t));\n\n            if (input.len < (size_t)payload_len) {\n                return SmolRTSP_ParseResult_partial();\n            }\n            input = CharSlice99_advance(input, (size_t)payload_len);\n        } else {\n            break;\n        }\n    }\n\n    MATCH(SmolRTSP_ResponseLine_parse(&self->start_line, input));\n    MATCH(SmolRTSP_HeaderMap_parse(&self->header_map, input));\n\n    CharSlice99 content_length;\n    size_t content_length_int = 0;\n    const bool content_length_is_found = SmolRTSP_HeaderMap_find(\n        &self->header_map, SMOLRTSP_HEADER_CONTENT_LENGTH, &content_length);\n\n    if (content_length_is_found) {\n        if (sscanf(\n                CharSlice99_alloca_c_str(content_length), \"%zd\",\n                &content_length_int) != 1) {\n            return SmolRTSP_ParseResult_Failure(\n                SmolRTSP_ParseError_ContentLength(content_length));\n        }\n    }\n\n    MATCH(SmolRTSP_MessageBody_parse(&self->body, input, content_length_int));\n\n    CharSlice99 cseq_value;\n    const bool cseq_found = SmolRTSP_HeaderMap_find(\n        &self->header_map, SMOLRTSP_HEADER_C_SEQ, &cseq_value);\n    if (!cseq_found) {\n        return SmolRTSP_ParseResult_Failure(SmolRTSP_ParseError_MissingCSeq());\n    }\n\n    uint32_t cseq;\n    if (sscanf(CharSlice99_alloca_c_str(cseq_value), \"%\" SCNu32, &cseq) != 1) {\n        return SmolRTSP_ParseResult_Failure(\n            SmolRTSP_ParseError_InvalidCSeq(cseq_value));\n    }\n\n    self->cseq = cseq;\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_Response_eq(\n    const SmolRTSP_Response *restrict lhs,\n    const SmolRTSP_Response *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return SmolRTSP_ResponseLine_eq(&lhs->start_line, &rhs->start_line) &&\n           SmolRTSP_HeaderMap_eq(&lhs->header_map, &rhs->header_map) &&\n           SmolRTSP_MessageBody_eq(&lhs->body, &rhs->body) &&\n           lhs->cseq == rhs->cseq;\n}\n"
  },
  {
    "path": "src/types/response_line.c",
    "content": "#include <smolrtsp/types/response_line.h>\n\n#include \"../macros.h\"\n#include \"parsing.h\"\n#include <smolrtsp/util.h>\n\n#include <assert.h>\n#include <string.h>\n\nssize_t SmolRTSP_ResponseLine_serialize(\n    const SmolRTSP_ResponseLine *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    ssize_t result = 0;\n\n    CHK_WRITE_ERR(result, SmolRTSP_RtspVersion_serialize(&self->version, w));\n    CHK_WRITE_ERR(result, VCALL(w, write, CharSlice99_from_str(\" \")));\n    CHK_WRITE_ERR(result, SmolRTSP_StatusCode_serialize(&self->code, w));\n    CHK_WRITE_ERR(result, VCALL(w, write, CharSlice99_from_str(\" \")));\n    CHK_WRITE_ERR(result, VCALL(w, write, self->reason));\n    CHK_WRITE_ERR(result, VCALL(w, write, SMOLRTSP_CRLF));\n\n    return result;\n}\n\nSmolRTSP_ParseResult SmolRTSP_ResponseLine_parse(\n    SmolRTSP_ResponseLine *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    MATCH(SmolRTSP_RtspVersion_parse(&self->version, input));\n    MATCH(SmolRTSP_StatusCode_parse(&self->code, input));\n    MATCH(SmolRTSP_ReasonPhrase_parse(&self->reason, input));\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_ResponseLine_eq(\n    const SmolRTSP_ResponseLine *restrict lhs,\n    const SmolRTSP_ResponseLine *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return SmolRTSP_RtspVersion_eq(&lhs->version, &rhs->version) &&\n           lhs->code == rhs->code &&\n           SmolRTSP_ReasonPhrase_eq(&lhs->reason, &rhs->reason);\n}\n"
  },
  {
    "path": "src/types/rtp.c",
    "content": "#include <smolrtsp/types/rtp.h>\n\n#include <assert.h>\n#include <string.h>\n\n#include <slice99.h>\n\n#define RTP_HEADER_VERSION_SHIFT   6\n#define RTP_HEADER_PADDING_SHIFT   5\n#define RTP_HEADER_EXTENSION_SHIFT 4\n#define RTP_HEADER_MARKER_SHIFT    7\n\nsize_t SmolRTSP_RtpHeader_size(SmolRTSP_RtpHeader self) {\n    static const size_t version_bits = 2, padding_bits = 1, extension_bits = 1,\n                        csrc_count_bits = 4, marker_bits = 1,\n                        payload_ty_bits = 7, sequence_number_bits = 16,\n                        timestamp_bits = 32, ssrc_bits = 32;\n\n    static const size_t csrc_size = 4;\n\n    size_t size = (version_bits + padding_bits + extension_bits +\n                   csrc_count_bits + marker_bits + payload_ty_bits +\n                   sequence_number_bits + timestamp_bits + ssrc_bits) /\n                      8 +\n                  (self.csrc_count * csrc_size);\n\n    if (self.extension) {\n        size += sizeof(self.extension_profile) +\n                sizeof(self.extension_payload_len) +\n                self.extension_payload_len * sizeof(uint32_t);\n    }\n\n    return size;\n}\n\nuint8_t *SmolRTSP_RtpHeader_serialize(\n    SmolRTSP_RtpHeader self, uint8_t buffer[restrict]) {\n    assert(buffer);\n\n    uint8_t *buffer_backup = buffer;\n\n    /*\n     *  0                   1                   2                   3\n     *  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1\n     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+\n     * |V=2|P|X|  CC   |M|     PT      |       sequence number         |\n     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+\n     * |                           timestamp                           |\n     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+\n     * |           synchronization source (SSRC) identifier            |\n     * +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+\n     * |            contributing source (CSRC) identifiers             |\n     * |                             ....                              |\n     * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+\n     */\n\n    // Serialize self.version, self.padding, self.extension, and self.csrc_count\n    // into the first byte.\n    *buffer = (self.version << RTP_HEADER_VERSION_SHIFT) | (self.csrc_count);\n    if (self.padding) {\n        *buffer |= ((uint8_t)1 << RTP_HEADER_PADDING_SHIFT);\n    }\n\n    if (self.extension) {\n        *buffer |= ((uint8_t)1 << RTP_HEADER_EXTENSION_SHIFT);\n    }\n\n    buffer++;\n\n    // Serialize self.marker and self.payload_ty into the second byte.\n    *buffer = self.payload_ty;\n    if (self.marker) {\n        *buffer |= ((uint8_t)1 << RTP_HEADER_MARKER_SHIFT);\n    }\n\n    buffer++;\n\n    buffer = SLICE99_APPEND(buffer, self.sequence_number);\n    buffer = SLICE99_APPEND(buffer, self.timestamp);\n    buffer = SLICE99_APPEND(buffer, self.ssrc);\n\n    for (uint8_t i = 0; i < self.csrc_count; i++) {\n        buffer = SLICE99_APPEND(buffer, self.csrc[i]);\n    }\n\n    if (self.extension) {\n        buffer = SLICE99_APPEND(buffer, self.extension_profile);\n        buffer = SLICE99_APPEND(buffer, self.extension_payload_len);\n\n        for (uint16_t i = 0; i < self.extension_payload_len * sizeof(uint32_t);\n             i++) {\n            buffer = SLICE99_APPEND(buffer, self.extension_payload[i]);\n        }\n    }\n\n    return buffer_backup;\n}\n"
  },
  {
    "path": "src/types/rtsp_version.c",
    "content": "#include <smolrtsp/types/rtsp_version.h>\n\n#include \"parsing.h\"\n\n#include <assert.h>\n#include <inttypes.h>\n#include <stdio.h>\n#include <string.h>\n\n#include <alloca.h>\n\nssize_t SmolRTSP_RtspVersion_serialize(\n    const SmolRTSP_RtspVersion *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    return VCALL(\n        w, writef, \"RTSP/%\" PRIu8 \".%\" PRIu8, self->major, self->minor);\n}\n\nSmolRTSP_ParseResult SmolRTSP_RtspVersion_parse(\n    SmolRTSP_RtspVersion *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    MATCH(smolrtsp_match_whitespaces(input));\n    MATCH(smolrtsp_match_str(input, \"RTSP/\"));\n\n    CharSlice99 major = input;\n    MATCH(smolrtsp_match_numeric(input));\n    major = CharSlice99_from_ptrdiff(major.ptr, input.ptr);\n    MATCH(smolrtsp_match_char(input, '.'));\n\n    CharSlice99 minor = input;\n    MATCH(smolrtsp_match_numeric(input));\n    minor = CharSlice99_from_ptrdiff(minor.ptr, input.ptr);\n\n    uint8_t major_int, minor_int;\n\n    if (sscanf(CharSlice99_alloca_c_str(major), \"%\" SCNu8, &major_int) != 1) {\n        return SmolRTSP_ParseResult_Failure(\n            SmolRTSP_ParseError_TypeMismatch(SmolRTSP_ParseType_Int, major));\n    }\n\n    if (sscanf(CharSlice99_alloca_c_str(minor), \"%\" SCNu8, &minor_int) != 1) {\n        return SmolRTSP_ParseResult_Failure(\n            SmolRTSP_ParseError_TypeMismatch(SmolRTSP_ParseType_Int, minor));\n    }\n\n    self->major = major_int;\n    self->minor = minor_int;\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_RtspVersion_eq(\n    const SmolRTSP_RtspVersion *restrict lhs,\n    const SmolRTSP_RtspVersion *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return lhs->major == rhs->major && lhs->minor == rhs->minor;\n}\n"
  },
  {
    "path": "src/types/sdp.c",
    "content": "#include <smolrtsp/types/sdp.h>\n\n#include \"../macros.h\"\n#include \"parsing.h\"\n#include <smolrtsp/util.h>\n\n#include <assert.h>\n#include <stdio.h>\n#include <stdlib.h>\n\nssize_t SmolRTSP_SdpLine_serialize(\n    const SmolRTSP_SdpLine *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    return SMOLRTSP_WRITE_SLICES(\n        w, {\n               CharSlice99_new((char *)&self->ty, 1),\n               CharSlice99_from_str(\"=\"),\n               self->value,\n               SMOLRTSP_CRLF,\n           });\n}\n\nssize_t smolrtsp_sdp_printf(\n    SmolRTSP_Writer w, SmolRTSP_SdpType ty, const char *fmt, ...) {\n    assert(w.self && w.vptr);\n    assert(fmt);\n\n    ssize_t result = 0;\n\n    va_list ap;\n    va_start(ap, fmt);\n\n    CHK_WRITE_ERR(result, VCALL(w, writef, \"%c=\", ty));\n    CHK_WRITE_ERR(result, VCALL(w, vwritef, fmt, ap));\n    CHK_WRITE_ERR(result, VCALL(w, write, SMOLRTSP_CRLF));\n\n    va_end(ap);\n\n    return result;\n}\n"
  },
  {
    "path": "src/types/status_code.c",
    "content": "#include <smolrtsp/types/status_code.h>\n\n#include \"parsing.h\"\n\n#include <assert.h>\n#include <inttypes.h>\n#include <stdio.h>\n#include <string.h>\n\n#include <alloca.h>\n\nssize_t SmolRTSP_StatusCode_serialize(\n    const SmolRTSP_StatusCode *restrict self, SmolRTSP_Writer w) {\n    assert(self);\n    assert(w.self && w.vptr);\n\n    return VCALL(w, writef, \"%\" PRIu16, *self);\n}\n\nSmolRTSP_ParseResult SmolRTSP_StatusCode_parse(\n    SmolRTSP_StatusCode *restrict self, CharSlice99 input) {\n    assert(self);\n\n    const CharSlice99 backup = input;\n\n    MATCH(smolrtsp_match_whitespaces(input));\n    CharSlice99 code = input;\n    MATCH(smolrtsp_match_numeric(input));\n    code = CharSlice99_from_ptrdiff(code.ptr, input.ptr);\n\n    SmolRTSP_StatusCode code_int;\n    if (sscanf(CharSlice99_alloca_c_str(code), \"%\" SCNu16, &code_int) != 1) {\n        return SmolRTSP_ParseResult_Failure(\n            SmolRTSP_ParseError_TypeMismatch(SmolRTSP_ParseType_Int, code));\n    }\n\n    *self = code_int;\n\n    return SmolRTSP_ParseResult_complete(input.ptr - backup.ptr);\n}\n\nbool SmolRTSP_StatusCode_eq(\n    const SmolRTSP_StatusCode *restrict lhs,\n    const SmolRTSP_StatusCode *restrict rhs) {\n    assert(lhs);\n    assert(rhs);\n\n    return *lhs == *rhs;\n}\n"
  },
  {
    "path": "src/util.c",
    "content": "#include <smolrtsp/util.h>\n\n#include <assert.h>\n#include <inttypes.h>\n#include <stdbool.h>\n#include <stdio.h>\n#include <string.h>\n\n#include <alloca.h>\n#include <arpa/inet.h>\n\nconst char *SmolRTSP_LowerTransport_str(SmolRTSP_LowerTransport self) {\n    switch (self) {\n    case SmolRTSP_LowerTransport_TCP:\n        return \"TCP\";\n    case SmolRTSP_LowerTransport_UDP:\n        return \"UDP\";\n    default:\n        return \"Unknown\";\n    }\n}\n\n#define PARSE_RANGE(lhs, rhs, specifier, param)                                \\\n    sscanf((param), \"%*[^=]=%\" specifier \"-%\" specifier, &(lhs), &(rhs))\n#define STARTS_WITH(str, beginning)                                            \\\n    (strncmp((str), (beginning), strlen(beginning)) == 0)\n\nstatic int parse_lower_transport(\n    SmolRTSP_TransportConfig *restrict result, const char *header_value);\nstatic int parse_transport_param(\n    SmolRTSP_TransportConfig *restrict result, const char *param);\nstatic int parse_channel_pair(\n    SmolRTSP_ChannelPair *restrict val, const char *restrict param);\nstatic int\nparse_port_pair(SmolRTSP_PortPair *restrict val, const char *restrict param);\n\nint smolrtsp_parse_transport(\n    SmolRTSP_TransportConfig *restrict config, CharSlice99 header_value) {\n    assert(config);\n\n    SmolRTSP_TransportConfig result = {\n        .lower = 0,\n        .unicast = false,\n        .multicast = false,\n        .interleaved = SmolRTSP_ChannelPair_None(),\n        .client_port = SmolRTSP_PortPair_None(),\n    };\n\n    const char *input = CharSlice99_alloca_c_str(header_value);\n\n    if (parse_lower_transport(&result, input) == -1) {\n        return -1;\n    }\n    if ((input = strchr(input, ';')) == NULL) {\n        goto success;\n    }\n    input++;\n\n    while (input != NULL) {\n        const char *next_param = strchr(input, ';');\n        const CharSlice99 param =\n            NULL == next_param\n                ? CharSlice99_from_str((char *)input)\n                : CharSlice99_from_ptrdiff((char *)input, (char *)next_param);\n\n        if (parse_transport_param(&result, CharSlice99_alloca_c_str(param)) ==\n            -1) {\n            return -1;\n        }\n\n        input = next_param != NULL ? next_param + 1 : NULL;\n    }\n\nsuccess:\n    *config = result;\n    return 0;\n}\n\nstatic int parse_lower_transport(\n    SmolRTSP_TransportConfig *restrict result, const char *header_value) {\n    const char *rtp_avp = \"RTP/AVP\";\n    if (strncmp(header_value, rtp_avp, strlen(rtp_avp)) != 0) {\n        return -1;\n    }\n    header_value += strlen(rtp_avp);\n\n    if (strncmp(header_value, \"/TCP\", strlen(\"/TCP\")) == 0) {\n        result->lower = SmolRTSP_LowerTransport_TCP;\n    } else if (strncmp(header_value, \"/UDP\", strlen(\"/UDP\")) == 0) {\n        result->lower = SmolRTSP_LowerTransport_UDP;\n    } else {\n        result->lower = SmolRTSP_LowerTransport_UDP;\n    }\n\n    return 0;\n}\n\nstatic int parse_transport_param(\n    SmolRTSP_TransportConfig *restrict result, const char *param) {\n    if (STARTS_WITH(param, \"unicast\")) {\n        result->unicast = true;\n    } else if (STARTS_WITH(param, \"multicast\")) {\n        result->multicast = true;\n    } else if (STARTS_WITH(param, \"interleaved\")) {\n        SmolRTSP_ChannelPair val;\n        if (parse_channel_pair(&val, param) == -1) {\n            return -1;\n        }\n        result->interleaved = SmolRTSP_ChannelPair_Some(val);\n    } else if (STARTS_WITH(param, \"client_port\")) {\n        SmolRTSP_PortPair val;\n        if (parse_port_pair(&val, param) == -1) {\n            return -1;\n        }\n        result->client_port = SmolRTSP_PortPair_Some(val);\n    }\n\n    return 0;\n}\n\nstatic int parse_channel_pair(\n    SmolRTSP_ChannelPair *restrict val, const char *restrict param) {\n    if (PARSE_RANGE(val->rtp_channel, val->rtcp_channel, SCNu8, param) < 1) {\n        return -1;\n    }\n\n    return 0;\n}\n\nstatic int\nparse_port_pair(SmolRTSP_PortPair *restrict val, const char *restrict param) {\n    if (PARSE_RANGE(val->rtp_port, val->rtcp_port, SCNu16, param) < 1) {\n        return -1;\n    }\n\n    return 0;\n}\n\nuint32_t smolrtsp_interleaved_header(uint8_t channel_id, uint16_t payload_len) {\n    uint8_t bytes[sizeof(uint32_t)] = {0};\n\n    bytes[0] = '$';\n    bytes[1] = channel_id;\n    memcpy(bytes + 2, &payload_len, sizeof payload_len);\n\n    uint32_t n;\n    memcpy(&n, bytes, sizeof bytes);\n    return n;\n}\n\nvoid smolrtsp_parse_interleaved_header(\n    const uint8_t data[restrict static 4], uint8_t *restrict channel_id,\n    uint16_t *restrict payload_len) {\n    assert(channel_id);\n    assert(payload_len);\n    assert('$' == data[0]);\n\n    *channel_id = data[1];\n    memcpy(payload_len, data + 2, sizeof *payload_len);\n    *payload_len = ntohs(*payload_len);\n}\n"
  },
  {
    "path": "src/writer/fd.c",
    "content": "#include <smolrtsp/writer.h>\n\n#include <assert.h>\n\ntypedef int FdWriter;\n\nstatic ssize_t FdWriter_write(VSelf, CharSlice99 data) {\n    VSELF(FdWriter);\n    assert(self);\n\n    return write(*self, data.ptr, data.len);\n}\n\nstatic void FdWriter_lock(VSelf) {\n    VSELF(FdWriter);\n    (void)self;\n}\n\nstatic void FdWriter_unlock(VSelf) {\n    VSELF(FdWriter);\n    (void)self;\n}\n\nstatic size_t FdWriter_filled(VSelf) {\n    VSELF(FdWriter);\n    (void)self;\n    return 0;\n}\n\nstatic int FdWriter_vwritef(VSelf, const char *restrict fmt, va_list ap) {\n    VSELF(FdWriter);\n\n    assert(self);\n    assert(fmt);\n\n    return vdprintf(*self, fmt, ap);\n}\n\nstatic int FdWriter_writef(VSelf, const char *restrict fmt, ...) {\n    VSELF(FdWriter);\n\n    assert(self);\n    assert(fmt);\n\n    va_list ap;\n    va_start(ap, fmt);\n\n    const int ret = FdWriter_vwritef(self, fmt, ap);\n    va_end(ap);\n\n    return ret;\n}\n\nimpl(SmolRTSP_Writer, FdWriter);\n\nSmolRTSP_Writer smolrtsp_fd_writer(int *fd) {\n    assert(fd);\n    return DYN(FdWriter, SmolRTSP_Writer, fd);\n}\n"
  },
  {
    "path": "src/writer/file.c",
    "content": "#include <smolrtsp/writer.h>\n\n#include <assert.h>\n#include <stdio.h>\n\ntypedef FILE FileWriter;\n\nstatic ssize_t FileWriter_write(VSelf, CharSlice99 data) {\n    VSELF(FileWriter);\n    assert(self);\n\n    const size_t ret = fwrite(data.ptr, sizeof(char), data.len, self);\n    if (ferror(self)) {\n        return -1;\n    }\n\n    return ret;\n}\n\nstatic void FileWriter_lock(VSelf) {\n    VSELF(FileWriter);\n    (void)self;\n}\n\nstatic void FileWriter_unlock(VSelf) {\n    VSELF(FileWriter);\n    (void)self;\n}\n\nstatic size_t FileWriter_filled(VSelf) {\n    VSELF(FileWriter);\n    (void)self;\n    return 0;\n}\n\nstatic int FileWriter_vwritef(VSelf, const char *restrict fmt, va_list ap) {\n    VSELF(FileWriter);\n\n    assert(self);\n    assert(fmt);\n\n    return vfprintf(self, fmt, ap);\n}\n\nstatic int FileWriter_writef(VSelf, const char *restrict fmt, ...) {\n    VSELF(FileWriter);\n\n    assert(self);\n    assert(fmt);\n\n    va_list ap;\n    va_start(ap, fmt);\n\n    const int ret = FileWriter_vwritef(self, fmt, ap);\n    va_end(ap);\n\n    return ret;\n}\n\nimpl(SmolRTSP_Writer, FileWriter);\n\nSmolRTSP_Writer smolrtsp_file_writer(FILE *stream) {\n    assert(stream);\n    return DYN(FileWriter, SmolRTSP_Writer, stream);\n}\n"
  },
  {
    "path": "src/writer/string.c",
    "content": "#include <smolrtsp/writer.h>\n\n#include <assert.h>\n#include <string.h>\n\ntypedef char StringWriter;\n\nstatic ssize_t StringWriter_write(VSelf, CharSlice99 data) {\n    VSELF(StringWriter);\n    assert(self);\n\n    strncat(self, data.ptr, data.len);\n    return data.len;\n}\n\nstatic void StringWriter_lock(VSelf) {\n    VSELF(StringWriter);\n    (void)self;\n}\n\nstatic void StringWriter_unlock(VSelf) {\n    VSELF(StringWriter);\n    (void)self;\n}\n\nstatic size_t StringWriter_filled(VSelf) {\n    VSELF(StringWriter);\n    (void)self;\n    return 0;\n}\n\nstatic int StringWriter_vwritef(VSelf, const char *restrict fmt, va_list ap) {\n    VSELF(StringWriter);\n\n    assert(self);\n    assert(fmt);\n\n    return vsprintf(self + strlen(self), fmt, ap);\n}\n\nstatic int StringWriter_writef(VSelf, const char *restrict fmt, ...) {\n    VSELF(StringWriter);\n\n    assert(self);\n    assert(fmt);\n\n    va_list ap;\n    va_start(ap, fmt);\n\n    const int ret = StringWriter_vwritef(self, fmt, ap);\n    va_end(ap);\n\n    return ret;\n}\n\nimpl(SmolRTSP_Writer, StringWriter);\n\nSmolRTSP_Writer smolrtsp_string_writer(char *buffer) {\n    assert(buffer);\n    return DYN(StringWriter, SmolRTSP_Writer, buffer);\n}\n"
  },
  {
    "path": "src/writer.c",
    "content": "#include <smolrtsp/writer.h>\n\n#include \"macros.h\"\n\n#include <assert.h>\n\nssize_t smolrtsp_write_slices(\n    SmolRTSP_Writer w, size_t len,\n    const CharSlice99 data[restrict static len]) {\n    assert(w.self && w.vptr);\n\n    ssize_t result = 0, ret = 0;\n\n    for (size_t i = 0; i < len; i++) {\n        ret = VCALL(w, write, data[i]);\n        CHK_WRITE_ERR(result, ret);\n    }\n\n    return result;\n}\n"
  },
  {
    "path": "tests/.gitignore",
    "content": "build/\n"
  },
  {
    "path": "tests/CMakeLists.txt",
    "content": "cmake_minimum_required(VERSION 3.16)\nproject(tests LANGUAGES C)\n\n# Fix the warnings about `DOWNLOAD_EXTRACT_TIMESTAMP` in newer CMake versions.\nif (CMAKE_VERSION VERSION_GREATER_EQUAL \"3.24.0\")\n    cmake_policy(SET CMP0135 NEW)\nendif()\n\nadd_subdirectory(.. build)\n\ninclude(FetchContent)\n\nFetchContent_Declare(\n  greatest\n  URL https://github.com/silentbicycle/greatest/archive/refs/tags/v1.5.0.tar.gz)\n\nFetchContent_MakeAvailable(greatest)\nFetchContent_GetProperties(greatest)\n\nadd_executable(\n  tests\n  main.c\n  types/header_map.c\n  types/header.c\n  types/message_body.c\n  types/method.c\n  types/reason_phrase.c\n  types/request.c\n  types/request_line.c\n  types/response.c\n  types/response_line.c\n  types/request_uri.c\n  types/rtsp_version.c\n  types/status_code.c\n  types/sdp.c\n  types/test_util.h\n  nal/h264.c\n  nal/h265.c\n  nal.c\n  util.c\n  writer.c\n  io_vec.c\n  controller.c\n  context.c\n  transport.c)\n\nif(CMAKE_C_COMPILER_ID STREQUAL \"Clang\")\n  target_compile_options(tests PRIVATE -Wall -Wextra -fsanitize=address)\nelseif(CMAKE_C_COMPILER_ID STREQUAL \"GNU\")\n  target_compile_options(tests PRIVATE -Wall -Wextra -fsanitize=address -Wno-misleading-indentation)\nendif()\n\ntarget_link_options(tests PRIVATE -fsanitize=address)\n\ntarget_link_libraries(tests smolrtsp)\ntarget_include_directories(tests PRIVATE ${greatest_SOURCE_DIR})\n\nset_target_properties(tests PROPERTIES C_STANDARD 99 C_STANDARD_REQUIRED ON)\n"
  },
  {
    "path": "tests/context.c",
    "content": "#include <smolrtsp/context.h>\n\n#include <greatest.h>\n\n#include <smolrtsp/types/header.h>\n\nTEST context_creation(void) {\n    char buffer[32] = {0};\n    const SmolRTSP_Writer w = smolrtsp_string_writer(buffer);\n\n    const uint32_t cseq = 123;\n\n    SmolRTSP_Context *ctx = SmolRTSP_Context_new(w, cseq);\n\n    const SmolRTSP_Writer got_writer = SmolRTSP_Context_get_writer(ctx);\n    ASSERT_EQ(w.self, got_writer.self);\n    ASSERT_EQ(w.vptr, got_writer.vptr);\n\n    ASSERT_EQ(cseq, SmolRTSP_Context_get_cseq(ctx));\n    ASSERT_EQ(0, SmolRTSP_Context_get_ret(ctx));\n\n    VTABLE(SmolRTSP_Context, SmolRTSP_Droppable).drop(ctx);\n    PASS();\n}\n\nTEST respond_empty(void) {\n    char buffer[512] = {0};\n    SmolRTSP_Writer w = smolrtsp_string_writer(buffer);\n    const uint32_t cseq = 456;\n\n    SmolRTSP_Context *ctx = SmolRTSP_Context_new(w, cseq);\n\n    const char *expected =\n        \"RTSP/1.0 404 Not found\\r\\n\"\n        \"CSeq: 456\\r\\n\\r\\n\";\n\n    ssize_t ret = smolrtsp_respond(ctx, SMOLRTSP_STATUS_NOT_FOUND, \"Not found\");\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_EQ(ret, SmolRTSP_Context_get_ret(ctx));\n    ASSERT_STR_EQ(expected, buffer);\n\n    VTABLE(SmolRTSP_Context, SmolRTSP_Droppable).drop(ctx);\n    PASS();\n}\n\nTEST respond(void) {\n    char buffer[512] = {0};\n    SmolRTSP_Writer w = smolrtsp_string_writer(buffer);\n    const uint32_t cseq = 456;\n\n    SmolRTSP_Context *ctx = SmolRTSP_Context_new(w, cseq);\n\n    smolrtsp_header(\n        ctx, SMOLRTSP_HEADER_DATE, \"%s, 05 Jun 1997 %d:%d:%d GMT\", \"Thu\", 18,\n        57, 19);\n    smolrtsp_header(\n        ctx, SMOLRTSP_HEADER_CONTENT_TYPE, \"application/octet-stream\");\n\n    smolrtsp_body(ctx, CharSlice99_from_str(\"1234567890\"));\n\n    const char *expected =\n        \"RTSP/1.0 404 Not found\\r\\n\"\n        \"CSeq: 456\\r\\n\"\n        \"Content-Length: 10\\r\\n\"\n        \"Date: Thu, 05 Jun 1997 18:57:19 GMT\\r\\n\"\n        \"Content-Type: application/octet-stream\\r\\n\"\n        \"\\r\\n1234567890\";\n\n    ssize_t ret = smolrtsp_respond(ctx, SMOLRTSP_STATUS_NOT_FOUND, \"Not found\");\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_EQ(ret, SmolRTSP_Context_get_ret(ctx));\n    ASSERT_STR_EQ(expected, buffer);\n\n    VTABLE(SmolRTSP_Context, SmolRTSP_Droppable).drop(ctx);\n    PASS();\n}\n\nTEST respond_ok(void) {\n    char buffer[512] = {0};\n    SmolRTSP_Writer w = smolrtsp_string_writer(buffer);\n    const uint32_t cseq = 456;\n\n    SmolRTSP_Context *ctx = SmolRTSP_Context_new(w, cseq);\n\n    const char *expected =\n        \"RTSP/1.0 200 OK\\r\\n\"\n        \"CSeq: 456\\r\\n\\r\\n\";\n\n    ssize_t ret = smolrtsp_respond_ok(ctx);\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_EQ(ret, SmolRTSP_Context_get_ret(ctx));\n    ASSERT_STR_EQ(expected, buffer);\n\n    VTABLE(SmolRTSP_Context, SmolRTSP_Droppable).drop(ctx);\n    PASS();\n}\n\nTEST respond_internal_error(void) {\n    char buffer[512] = {0};\n    SmolRTSP_Writer w = smolrtsp_string_writer(buffer);\n    const uint32_t cseq = 456;\n\n    SmolRTSP_Context *ctx = SmolRTSP_Context_new(w, cseq);\n\n    const char *expected =\n        \"RTSP/1.0 500 Internal error\\r\\n\"\n        \"CSeq: 456\\r\\n\\r\\n\";\n\n    ssize_t ret = smolrtsp_respond_internal_error(ctx);\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_EQ(ret, SmolRTSP_Context_get_ret(ctx));\n    ASSERT_STR_EQ(expected, buffer);\n\n    VTABLE(SmolRTSP_Context, SmolRTSP_Droppable).drop(ctx);\n    PASS();\n}\n\nSUITE(context) {\n    RUN_TEST(context_creation);\n    RUN_TEST(respond_empty);\n    RUN_TEST(respond);\n    RUN_TEST(respond_ok);\n    RUN_TEST(respond_internal_error);\n}\n"
  },
  {
    "path": "tests/controller.c",
    "content": "#include <smolrtsp/controller.h>\n\n#include <greatest.h>\n\n#include <assert.h>\n#include <stdbool.h>\n\nstatic SmolRTSP_Request options_req, describe_req, setup_req, play_req,\n    teardown_req, abracadabra_req;\n\ntypedef struct {\n    bool options_completed, describe_completed, setup_completed, play_completed,\n        teardown_completed, abracadabra_completed;\n    int before_invoked_n, after_invoked_n;\n    bool dropped;\n} Client;\n\nstatic void Client_drop(VSelf) {\n    VSELF(Client);\n    self->dropped = true;\n}\n\nimpl(SmolRTSP_Droppable, Client);\n\n#define HEADER_TEST_METHOD CharSlice99_from_str(\"Test-Method\")\n\nstatic void\nClient_options(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    self->options_completed = true;\n    assert(req == &options_req);\n    smolrtsp_header(ctx, HEADER_TEST_METHOD, \"options\");\n    const ssize_t ret = smolrtsp_respond_ok(ctx);\n    assert(ret > 0);\n}\n\nstatic void\nClient_describe(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    self->describe_completed = true;\n    assert(req == &describe_req);\n    smolrtsp_header(ctx, HEADER_TEST_METHOD, \"describe\");\n    const ssize_t ret = smolrtsp_respond_ok(ctx);\n    assert(ret > 0);\n}\n\nstatic void\nClient_setup(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    self->setup_completed = true;\n    assert(req == &setup_req);\n    smolrtsp_header(ctx, HEADER_TEST_METHOD, \"setup\");\n    const ssize_t ret = smolrtsp_respond_ok(ctx);\n    assert(ret > 0);\n}\n\nstatic void\nClient_play(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    self->play_completed = true;\n    assert(req == &play_req);\n    smolrtsp_header(ctx, HEADER_TEST_METHOD, \"play\");\n    const ssize_t ret = smolrtsp_respond_ok(ctx);\n    assert(ret > 0);\n}\n\nstatic void\nClient_teardown(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    self->teardown_completed = true;\n    assert(req == &teardown_req);\n    smolrtsp_header(ctx, HEADER_TEST_METHOD, \"teardown\");\n    const ssize_t ret = smolrtsp_respond_ok(ctx);\n    assert(ret > 0);\n}\n\nstatic void\nClient_unknown(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    self->abracadabra_completed = true;\n    assert(req == &abracadabra_req);\n    smolrtsp_header(ctx, HEADER_TEST_METHOD, \"abracadabra\");\n    const ssize_t ret = smolrtsp_respond_ok(ctx);\n    assert(ret > 0);\n}\n\nstatic SmolRTSP_ControlFlow\nClient_before(VSelf, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n    self->before_invoked_n++;\n\n    (void)req;\n\n    // Set up initial headers.\n    smolrtsp_header(ctx, SMOLRTSP_HEADER_AUTHORIZATION, \"WWW-Authenticate\");\n    smolrtsp_header(ctx, SMOLRTSP_HEADER_SERVER, \"MyServer\");\n\n    return SmolRTSP_ControlFlow_Continue;\n}\n\nstatic void Client_after(\n    VSelf, ssize_t ret, SmolRTSP_Context *ctx, const SmolRTSP_Request *req) {\n    VSELF(Client);\n\n    (void)ctx;\n    (void)req;\n\n    self->after_invoked_n++;\n\n    assert(ret > 0);\n}\n\nimpl(SmolRTSP_Controller, Client);\n\nTEST dispatch(void) {\n    options_req.cseq = describe_req.cseq = setup_req.cseq = play_req.cseq =\n        teardown_req.cseq = abracadabra_req.cseq = 123;\n\n    options_req.start_line.method = SMOLRTSP_METHOD_OPTIONS;\n    describe_req.start_line.method = SMOLRTSP_METHOD_DESCRIBE;\n    setup_req.start_line.method = SMOLRTSP_METHOD_SETUP;\n    play_req.start_line.method = SMOLRTSP_METHOD_PLAY;\n    teardown_req.start_line.method = SMOLRTSP_METHOD_TEARDOWN;\n    abracadabra_req.start_line.method = CharSlice99_from_str(\"Abracadabra\");\n\n    char buffer[256] = {0};\n    const SmolRTSP_Writer sdp = smolrtsp_string_writer(buffer);\n\n    Client client = {\n        .options_completed = false,\n        .describe_completed = false,\n        .setup_completed = false,\n        .play_completed = false,\n        .teardown_completed = false,\n        .abracadabra_completed = false,\n        .before_invoked_n = 0,\n        .after_invoked_n = 0,\n        .dropped = false,\n    };\n\n    SmolRTSP_Controller controller = DYN(Client, SmolRTSP_Controller, &client);\n\n    int before_after_invoked_n = 0;\n\n#define CHECK(method)                                                          \\\n    do {                                                                       \\\n        smolrtsp_dispatch(sdp, controller, &method##_req);                     \\\n        before_after_invoked_n++;                                              \\\n        ASSERT(client.method##_completed);                                     \\\n        ASSERT_EQ(before_after_invoked_n, client.before_invoked_n);            \\\n        ASSERT_EQ(before_after_invoked_n, client.after_invoked_n);             \\\n        ASSERT_STR_EQ(                                                         \\\n            \"RTSP/1.0 200 OK\\r\\n\"                                              \\\n            \"CSeq: 123\\r\\n\"                                                    \\\n            \"Authorization: WWW-Authenticate\\r\\n\"                              \\\n            \"Server: MyServer\\r\\n\"                                             \\\n            \"Test-Method: \" #method \"\\r\\n\\r\\n\",                                \\\n            buffer);                                                           \\\n        buffer[0] = '\\0';                                                      \\\n    } while (0)\n\n    CHECK(options);\n    CHECK(describe);\n    CHECK(setup);\n    CHECK(play);\n    CHECK(teardown);\n    CHECK(abracadabra);\n\n#undef CHECK\n\n    PASS();\n}\n\nSUITE(controller) {\n    RUN_TEST(dispatch);\n}\n"
  },
  {
    "path": "tests/io_vec.c",
    "content": "#include <smolrtsp/io_vec.h>\n\n#include <greatest.h>\n\nTEST io_vec_len(void) {\n    struct iovec bufs[] = {\n        {.iov_base = NULL, .iov_len = 5},\n        {.iov_base = NULL, .iov_len = 1},\n        {.iov_base = NULL, .iov_len = 0},\n    };\n\n    ASSERT_EQ(\n        SmolRTSP_IoVecSlice_len(\n            (SmolRTSP_IoVecSlice)Slice99_typed_from_array(bufs)),\n        5 + 1 + 0);\n\n    PASS();\n}\n\nTEST slice_to_iovec(void) {\n    uint8_t data[] = {1, 2, 3};\n    const struct iovec bufs =\n        smolrtsp_slice_to_iovec((U8Slice99)Slice99_typed_from_array(data));\n\n    ASSERT_EQ(bufs.iov_base, data);\n    ASSERT_EQ(bufs.iov_len, sizeof data);\n\n    PASS();\n}\n\nSUITE(io_vec) {\n    RUN_TEST(io_vec_len);\n    RUN_TEST(slice_to_iovec);\n}\n"
  },
  {
    "path": "tests/main.c",
    "content": "#include <greatest.h>\n\n// Check that the main header compiles well.\n#include <smolrtsp.h>\n\n#define SMOLRTSP_SUITE(name)                                                   \\\n    extern void name(void);                                                    \\\n    RUN_SUITE(name)\n\nGREATEST_MAIN_DEFS();\n\nint main(int argc, char *argv[]) {\n    GREATEST_MAIN_BEGIN();\n\n    SMOLRTSP_SUITE(types_header_map);\n    SMOLRTSP_SUITE(types_header);\n    SMOLRTSP_SUITE(types_message_body);\n    SMOLRTSP_SUITE(types_method);\n    SMOLRTSP_SUITE(types_reason_phrase);\n    SMOLRTSP_SUITE(types_request_line);\n    SMOLRTSP_SUITE(types_request_uri);\n    SMOLRTSP_SUITE(types_request);\n    SMOLRTSP_SUITE(types_response_line);\n    SMOLRTSP_SUITE(types_response);\n    SMOLRTSP_SUITE(types_rtsp_version);\n    SMOLRTSP_SUITE(types_sdp);\n    SMOLRTSP_SUITE(types_status_code);\n\n    SMOLRTSP_SUITE(nal_h264);\n    SMOLRTSP_SUITE(nal_h265);\n    SMOLRTSP_SUITE(nal);\n\n    SMOLRTSP_SUITE(util);\n    SMOLRTSP_SUITE(writer);\n    SMOLRTSP_SUITE(transport);\n    SMOLRTSP_SUITE(io_vec);\n    SMOLRTSP_SUITE(context);\n    SMOLRTSP_SUITE(controller);\n\n    GREATEST_MAIN_END();\n}\n"
  },
  {
    "path": "tests/nal/h264.c",
    "content": "#include <smolrtsp/nal/h264.h>\n\n#include <greatest.h>\n\nTEST parse(void) {\n    const SmolRTSP_H264NalHeader h = SmolRTSP_H264NalHeader_parse(0b01011010);\n\n    ASSERT(!h.forbidden_zero_bit);\n    ASSERT_EQ(0b10, h.ref_idc);\n    ASSERT_EQ(0b11010, h.unit_type);\n\n    PASS();\n}\n\nTEST serialize(void) {\n    const SmolRTSP_H264NalHeader h = {\n        .forbidden_zero_bit = false,\n        .ref_idc = 0b10,\n        .unit_type = 0b11010,\n    };\n\n    const uint8_t ret = SmolRTSP_H264NalHeader_serialize(h);\n    ASSERT_EQ(0b01011010, ret);\n\n    PASS();\n}\n\nTEST write_fu_header(void) {\n    const SmolRTSP_H264NalHeader h = {\n        .forbidden_zero_bit = false,\n        .ref_idc = 0b10,\n        .unit_type = 0b11010,\n    };\n\n    uint8_t buffer[SMOLRTSP_H264_FU_HEADER_SIZE] = {0};\n\n#define CHECK(is_first_fragment, is_last_fragment, ...)                        \\\n    do {                                                                       \\\n        SmolRTSP_H264NalHeader_write_fu_header(                                \\\n            h, buffer, is_first_fragment, is_last_fragment);                   \\\n        ASSERT_MEM_EQ(((uint8_t[]){__VA_ARGS__}), buffer, sizeof buffer);      \\\n    } while (0)\n\n    CHECK(true, true, 0b01011100, 0b11011010);\n    CHECK(true, false, 0b01011100, 0b10011010);\n    CHECK(false, true, 0b01011100, 0b01011010);\n    CHECK(false, false, 0b01011100, 0b00011010);\n\n#undef CHECK\n\n    PASS();\n}\n\nSUITE(nal_h264) {\n    RUN_TEST(parse);\n    RUN_TEST(serialize);\n    RUN_TEST(write_fu_header);\n}\n"
  },
  {
    "path": "tests/nal/h265.c",
    "content": "#include <smolrtsp/nal/h265.h>\n\n#include <greatest.h>\n\nTEST parse(void) {\n    const SmolRTSP_H265NalHeader h =\n        SmolRTSP_H265NalHeader_parse((uint8_t[]){0b01001011, 0b10101101});\n\n    ASSERT(!h.forbidden_zero_bit);\n    ASSERT_EQ(0b100101, h.unit_type);\n    ASSERT_EQ(0b110101, h.nuh_layer_id);\n    ASSERT_EQ(0b101, h.nuh_temporal_id_plus1);\n\n    PASS();\n}\n\nTEST serialize(void) {\n    const SmolRTSP_H265NalHeader h = {\n        .forbidden_zero_bit = false,\n        .unit_type = 0b100101,\n        .nuh_layer_id = 0b110101,\n        .nuh_temporal_id_plus1 = 0b101,\n    };\n\n    const uint16_t ret = SmolRTSP_H265NalHeader_serialize(h);\n    ASSERT_EQ(0b1010110101001011, ret);\n\n    PASS();\n}\n\nTEST write_fu_header(void) {\n    const SmolRTSP_H265NalHeader h = {\n        .forbidden_zero_bit = false,\n        .unit_type = 0b100101,\n        .nuh_layer_id = 0b110101,\n        .nuh_temporal_id_plus1 = 0b101,\n    };\n\n    uint8_t buffer[SMOLRTSP_H265_FU_HEADER_SIZE] = {0};\n\n#define CHECK(is_first_fragment, is_last_fragment, ...)                        \\\n    do {                                                                       \\\n        SmolRTSP_H265NalHeader_write_fu_header(                                \\\n            h, buffer, is_first_fragment, is_last_fragment);                   \\\n        ASSERT_MEM_EQ(((uint8_t[]){__VA_ARGS__}), buffer, sizeof buffer);      \\\n    } while (0)\n\n    CHECK(true, true, 0b01100011, 0b10101101, 0b11100101);\n    CHECK(true, false, 0b01100011, 0b10101101, 0b10100101);\n    CHECK(false, true, 0b01100011, 0b10101101, 0b01100101);\n    CHECK(false, false, 0b01100011, 0b10101101, 0b00100101);\n\n#undef CHECK\n\n    PASS();\n}\n\nSUITE(nal_h265) {\n    RUN_TEST(parse);\n    RUN_TEST(serialize);\n    RUN_TEST(write_fu_header);\n}\n"
  },
  {
    "path": "tests/nal.c",
    "content": "#include <smolrtsp/nal.h>\n\n#include <greatest.h>\n\n#include <alloca.h>\n\nstatic const SmolRTSP_H264NalHeader h264_header = {\n    .forbidden_zero_bit = false,\n    .ref_idc = 0b10,\n    .unit_type = SMOLRTSP_H264_NAL_UNIT_SUBSET_SPS,\n};\n\nstatic const SmolRTSP_H265NalHeader h265_header = {\n    .forbidden_zero_bit = false,\n    .unit_type = SMOLRTSP_H265_NAL_UNIT_RASL_N,\n    .nuh_layer_id = 0b110101,\n    .nuh_temporal_id_plus1 = 0b101,\n};\n\n#define NAL_HEADER_TEST_GETTER(T, name, h264_value, h265_value)                \\\n    TEST header_##name##_h264(void) {                                          \\\n        const T result =                                                       \\\n            SmolRTSP_NalHeader_##name(SmolRTSP_NalHeader_H264(h264_header));   \\\n        ASSERT_EQ(h264_value, result);                                         \\\n        PASS();                                                                \\\n    }                                                                          \\\n                                                                               \\\n    TEST header_##name##_h265(void) {                                          \\\n        const T result =                                                       \\\n            SmolRTSP_NalHeader_##name(SmolRTSP_NalHeader_H265(h265_header));   \\\n        ASSERT_EQ(h265_value, result);                                         \\\n        PASS();                                                                \\\n    }\n\nNAL_HEADER_TEST_GETTER(\n    uint8_t, unit_type, h264_header.unit_type, h265_header.unit_type)\nNAL_HEADER_TEST_GETTER(\n    size_t, size, SMOLRTSP_H264_NAL_HEADER_SIZE, SMOLRTSP_H265_NAL_HEADER_SIZE)\nNAL_HEADER_TEST_GETTER(\n    size_t, fu_size, SMOLRTSP_H264_FU_HEADER_SIZE, SMOLRTSP_H265_FU_HEADER_SIZE)\n\n#undef NAL_HEADER_TEST_GETTER\n\nTEST header_serialize_h264(void) {\n    uint8_t buffer[SMOLRTSP_H264_NAL_HEADER_SIZE] = {0};\n    SmolRTSP_NalHeader_serialize(SmolRTSP_NalHeader_H264(h264_header), buffer);\n    ASSERT_EQ(0b01001111, buffer[0]);\n\n    PASS();\n}\n\nTEST header_serialize_h265(void) {\n    uint8_t buffer[SMOLRTSP_H265_NAL_HEADER_SIZE] = {0};\n    SmolRTSP_NalHeader_serialize(SmolRTSP_NalHeader_H265(h265_header), buffer);\n    ASSERT_EQ(0b00010001, buffer[0]);\n    ASSERT_EQ(0b10101101, buffer[1]);\n\n    PASS();\n}\n\nTEST header_serialize_fu_h264(void) {\n    uint8_t buffer[SMOLRTSP_H264_FU_HEADER_SIZE] = {0};\n    const bool is_first_fragment = true, is_last_fragment = false;\n\n    SmolRTSP_NalHeader_write_fu_header(\n        SmolRTSP_NalHeader_H264(h264_header), buffer, is_first_fragment,\n        is_last_fragment);\n\n    ASSERT_EQ(0b01011100, buffer[0]);\n    ASSERT_EQ(0b10001111, buffer[1]);\n\n    PASS();\n}\n\nTEST header_serialize_fu_h265(void) {\n    uint8_t buffer[SMOLRTSP_H265_FU_HEADER_SIZE] = {0};\n    const bool is_first_fragment = true, is_last_fragment = false;\n\n    SmolRTSP_NalHeader_write_fu_header(\n        SmolRTSP_NalHeader_H265(h265_header), buffer, is_first_fragment,\n        is_last_fragment);\n\n    ASSERT_EQ(0b01100011, buffer[0]);\n    ASSERT_EQ(0b10101101, buffer[1]);\n    ASSERT_EQ(0b10001000, buffer[2]);\n\n    PASS();\n}\n\nTEST determine_start_code(void) {\n    ASSERT_EQ(NULL, smolrtsp_determine_start_code(U8Slice99_empty()));\n\n#define CHECK(expected, ...)                                                   \\\n    ASSERT_EQ(                                                                 \\\n        expected,                                                              \\\n        smolrtsp_determine_start_code(                                         \\\n            (U8Slice99)Slice99_typed_from_array((uint8_t[]){__VA_ARGS__})))\n\n    CHECK(NULL, 0x00);\n    CHECK(NULL, 0x00, 0x00);\n    CHECK(smolrtsp_test_start_code_3b, 0x00, 0x00, 0x01);\n    CHECK(smolrtsp_test_start_code_3b, 0x00, 0x00, 0x01, 0xAB);\n    CHECK(smolrtsp_test_start_code_3b, 0x00, 0x00, 0x01, 0xAB, 0x8C);\n\n    CHECK(smolrtsp_test_start_code_4b, 0x00, 0x00, 0x00, 0x01);\n    CHECK(smolrtsp_test_start_code_4b, 0x00, 0x00, 0x00, 0x01, 0xAB);\n    CHECK(smolrtsp_test_start_code_4b, 0x00, 0x00, 0x00, 0x01, 0xAB, 0x8C);\n\n#undef CHECK\n\n    PASS();\n}\n\nTEST test_start_code_3b(void) {\n    ASSERT_EQ(0, smolrtsp_test_start_code_3b(U8Slice99_empty()));\n\n#define CHECK(expected, ...)                                                   \\\n    ASSERT_EQ(                                                                 \\\n        expected,                                                              \\\n        smolrtsp_test_start_code_3b(                                           \\\n            (U8Slice99)Slice99_typed_from_array((uint8_t[]){__VA_ARGS__})))\n\n    CHECK(0, 0x00);\n    CHECK(0, 0x00, 0x00);\n    CHECK(3, 0x00, 0x00, 0x01);\n    CHECK(3, 0x00, 0x00, 0x01, 0xAB);\n    CHECK(3, 0x00, 0x00, 0x01, 0xAB, 0x8C);\n\n#undef CHECK\n\n    PASS();\n}\n\nTEST test_start_code_4b(void) {\n    ASSERT_EQ(0, smolrtsp_test_start_code_4b(U8Slice99_empty()));\n\n#define CHECK(expected, ...)                                                   \\\n    ASSERT_EQ(                                                                 \\\n        expected,                                                              \\\n        smolrtsp_test_start_code_4b(                                           \\\n            (U8Slice99)Slice99_typed_from_array((uint8_t[]){__VA_ARGS__})))\n\n    CHECK(0, 0x00);\n    CHECK(0, 0x00, 0x00);\n    CHECK(4, 0x00, 0x00, 0x00, 0x01);\n    CHECK(4, 0x00, 0x00, 0x00, 0x01, 0xAB);\n    CHECK(4, 0x00, 0x00, 0x00, 0x01, 0xAB, 0x8C);\n\n#undef CHECK\n\n    PASS();\n}\n\nSUITE(nal) {\n    RUN_TEST(header_unit_type_h264);\n    RUN_TEST(header_unit_type_h265);\n    RUN_TEST(header_size_h264);\n    RUN_TEST(header_size_h265);\n    RUN_TEST(header_fu_size_h264);\n    RUN_TEST(header_fu_size_h265);\n\n    RUN_TEST(header_serialize_h264);\n    RUN_TEST(header_serialize_h265);\n    RUN_TEST(header_serialize_fu_h264);\n    RUN_TEST(header_serialize_fu_h265);\n\n    RUN_TEST(determine_start_code);\n    RUN_TEST(test_start_code_3b);\n    RUN_TEST(test_start_code_4b);\n}\n"
  },
  {
    "path": "tests/transport.c",
    "content": "#include <smolrtsp/transport.h>\n\n#include <greatest.h>\n\n#include <arpa/inet.h>\n#include <sys/socket.h>\n#include <sys/types.h>\n#include <unistd.h>\n\n#include <stdbool.h>\n#include <stdio.h>\n\n#define DATA_0 \"abc\"\n#define DATA_1 \"defghi\"\n\nstatic enum greatest_test_res test_transport(\n    SmolRTSP_Transport t, int read_fd, size_t len,\n    const char expected[restrict static len]) {\n    struct iovec bufs[] = {\n        {.iov_base = DATA_0, .iov_len = sizeof((char[]){DATA_0}) - 1},\n        {.iov_base = DATA_1, .iov_len = sizeof((char[]){DATA_1}) - 1},\n    };\n\n    const SmolRTSP_IoVecSlice slices = Slice99_typed_from_array(bufs);\n\n    const ssize_t ret = VCALL(t, transmit, slices);\n    ASSERT_EQ(0, ret);\n\n    char *buffer = malloc(len);\n    read(read_fd, buffer, len);\n    ASSERT_MEM_EQ(expected, buffer, len);\n    free(buffer);\n\n    VCALL_SUPER(t, SmolRTSP_Droppable, drop);\n\n    PASS();\n}\n\nTEST check_tcp(void) {\n    int fds[2];\n    const bool socketpair_ok = socketpair(AF_UNIX, SOCK_STREAM, 0, fds) == 0;\n    ASSERT(socketpair_ok);\n\n    const uint8_t chn_id = 123;\n\n    SmolRTSP_Transport tcp =\n        smolrtsp_transport_tcp(smolrtsp_fd_writer(&fds[0]), chn_id, 0);\n\n    const char total_len = strlen(DATA_0) + strlen(DATA_1);\n    const char expected[] = {'$', chn_id, 0,   total_len, 'a', 'b', 'c',\n                             'd', 'e',    'f', 'g',       'h', 'i'};\n\n    CHECK_CALL(test_transport(tcp, fds[1], sizeof expected, expected));\n\n    close(fds[0]);\n    close(fds[1]);\n    PASS();\n}\n\nTEST check_udp(void) {\n    int fds[2];\n    const bool socketpair_ok = socketpair(AF_UNIX, SOCK_SEQPACKET, 0, fds) == 0;\n    ASSERT(socketpair_ok);\n\n    SmolRTSP_Transport udp = smolrtsp_transport_udp(fds[0]);\n\n    char expected[] = {DATA_0 DATA_1};\n\n    CHECK_CALL(test_transport(udp, fds[1], strlen(expected), expected));\n\n    close(fds[0]);\n    close(fds[1]);\n    PASS();\n}\n\nTEST sockaddr_get_ipv4(void) {\n    struct sockaddr_storage addr;\n    memset(&addr, '\\0', sizeof addr);\n    addr.ss_family = AF_INET;\n\n    ASSERT_EQ(\n        (void *)&((struct sockaddr_in *)&addr)->sin_addr,\n        smolrtsp_sockaddr_ip((const struct sockaddr *)&addr));\n\n    PASS();\n}\n\nTEST sockaddr_get_ipv6(void) {\n    struct sockaddr_storage addr;\n    memset(&addr, '\\0', sizeof addr);\n    addr.ss_family = AF_INET6;\n\n    ASSERT_EQ(\n        (void *)&((struct sockaddr_in6 *)&addr)->sin6_addr,\n        smolrtsp_sockaddr_ip((const struct sockaddr *)&addr));\n\n    PASS();\n}\n\nTEST sockaddr_get_unknown(void) {\n    struct sockaddr_storage addr;\n    memset(&addr, '\\0', sizeof addr);\n    addr.ss_family = AF_UNIX;\n\n    ASSERT_EQ(NULL, smolrtsp_sockaddr_ip((const struct sockaddr *)&addr));\n\n    PASS();\n}\n\nSUITE(transport) {\n    RUN_TEST(check_tcp);\n    RUN_TEST(check_udp);\n    RUN_TEST(sockaddr_get_ipv4);\n    RUN_TEST(sockaddr_get_ipv6);\n    RUN_TEST(sockaddr_get_unknown);\n}\n"
  },
  {
    "path": "tests/types/header.c",
    "content": "#include <smolrtsp/types/header.h>\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_Header)\n\nTEST parse_header(void) {\n    TEST_PARSE(\n        \"User-Agent: LibVLC/3.0.8 (LIVE555 Streaming Media v2018.02.18)\\r\\n\",\n        ((SmolRTSP_Header){\n            SMOLRTSP_HEADER_USER_AGENT,\n            CharSlice99_from_str(\n                \"LibVLC/3.0.8 (LIVE555 Streaming Media v2018.02.18)\"),\n        }));\n\n    SmolRTSP_Header result;\n\n    ASSERT(SmolRTSP_ParseResult_is_failure(\n        SmolRTSP_Header_parse(&result, CharSlice99_from_str(\"~@~\"))));\n\n    PASS();\n}\n\nTEST serialize_header(void) {\n    char buffer[200] = {0};\n\n    const SmolRTSP_Header header = {\n        SMOLRTSP_HEADER_CONTENT_LENGTH,\n        CharSlice99_from_str(\"123\"),\n    };\n\n    const ssize_t ret =\n        SmolRTSP_Header_serialize(&header, smolrtsp_string_writer(buffer));\n\n    const char *expected = \"Content-Length: 123\\r\\n\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nSUITE(types_header) {\n    RUN_TEST(parse_header);\n    RUN_TEST(serialize_header);\n}\n"
  },
  {
    "path": "tests/types/header_map.c",
    "content": "#include <smolrtsp/types/header_map.h>\n\n#include <stdlib.h>\n\n#define TEST_PARSE_INIT_TYPE(result) result = SmolRTSP_HeaderMap_empty()\n\n#include \"test_util.h\"\n#include <greatest.h>\n\n#include <slice99.h>\n\nDEF_TEST_PARSE(SmolRTSP_HeaderMap)\n\n#define HEADER_MAP                                                             \\\n    SmolRTSP_HeaderMap_from_array({                                            \\\n        {SMOLRTSP_HEADER_CONTENT_LENGTH, CharSlice99_from_str(\"10\")},          \\\n        {SMOLRTSP_HEADER_ACCEPT_LANGUAGE, CharSlice99_from_str(\"English\")},    \\\n        {SMOLRTSP_HEADER_CONTENT_TYPE,                                         \\\n         CharSlice99_from_str(\"application/octet-stream\")},                    \\\n    })\n\n#define HEADER_MAP_STR                                                         \\\n    \"Content-Length: 10\\r\\nAccept-Language: English\\r\\nContent-Type: \"         \\\n    \"application/octet-stream\\r\\n\\r\\n\"\n\nTEST parse_header_map(void) {\n    TEST_PARSE(HEADER_MAP_STR, HEADER_MAP);\n\n    SmolRTSP_HeaderMap result = SmolRTSP_HeaderMap_empty();\n\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_HeaderMap_parse(\n        &result, CharSlice99_from_str(\"~29838\\r\\n\\r\\n\"))));\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_HeaderMap_parse(\n        &result,\n        CharSlice99_from_str(\"Content-Length: 10\\r\\n38@@2: 10\\r\\n\\r\\n\"))));\n\n    PASS();\n}\n\nTEST serialize_header_map(void) {\n    char buffer[500] = {0};\n    const SmolRTSP_HeaderMap map = HEADER_MAP;\n\n    const ssize_t ret =\n        SmolRTSP_HeaderMap_serialize(&map, smolrtsp_string_writer(buffer));\n    ASSERT_EQ((ssize_t)strlen(HEADER_MAP_STR), ret);\n    ASSERT_STR_EQ(HEADER_MAP_STR, buffer);\n\n    PASS();\n}\n\nTEST find(void) {\n    const SmolRTSP_HeaderMap map = HEADER_MAP;\n\n    CharSlice99 content_length;\n    const bool content_length_is_found = SmolRTSP_HeaderMap_find(\n        &map, SMOLRTSP_HEADER_CONTENT_LENGTH, &content_length);\n\n    ASSERT(content_length_is_found);\n    ASSERT(\n        CharSlice99_primitive_eq(content_length, CharSlice99_from_str(\"10\")));\n\n    PASS();\n}\n\nTEST contains_key(void) {\n    const SmolRTSP_HeaderMap map = HEADER_MAP;\n\n    ASSERT(\n        SmolRTSP_HeaderMap_contains_key(&map, SMOLRTSP_HEADER_CONTENT_LENGTH));\n    ASSERT(!SmolRTSP_HeaderMap_contains_key(&map, SMOLRTSP_HEADER_ALLOW));\n\n    PASS();\n}\n\nTEST append(void) {\n    SmolRTSP_HeaderMap map = SmolRTSP_HeaderMap_empty(), expected = HEADER_MAP;\n\n    for (size_t i = 0; i < HEADER_MAP.len; i++) {\n        SmolRTSP_HeaderMap_append(&map, HEADER_MAP.headers[i]);\n    }\n\n    ASSERT(SmolRTSP_HeaderMap_eq(&map, &expected));\n    PASS();\n}\n\nTEST is_full(void) {\n    SmolRTSP_HeaderMap map = SmolRTSP_HeaderMap_empty();\n\n    ASSERT(!SmolRTSP_HeaderMap_is_full(&map));\n\n    map.len = SMOLRTSP_HEADER_MAP_CAPACITY;\n    ASSERT(SmolRTSP_HeaderMap_is_full(&map));\n\n    PASS();\n}\n\nTEST scanf_header(void) {\n    const SmolRTSP_HeaderMap map = HEADER_MAP;\n\n    size_t content_length = 0;\n    int ret = smolrtsp_scanf_header(\n        &map, SMOLRTSP_HEADER_CONTENT_LENGTH, \"%zd\", &content_length);\n    ASSERT_EQ(1, ret);\n    ASSERT_EQ(10, content_length);\n\n    ret = smolrtsp_scanf_header(&map, SMOLRTSP_HEADER_ACCEPT_LANGUAGE, \"%*d\");\n    ASSERT_EQ(0, ret);\n\n    char auth[32] = {0};\n    ret = smolrtsp_scanf_header(\n        &map, SMOLRTSP_HEADER_WWW_AUTHENTICATE, \"%s\", auth);\n    ASSERT_EQ(-1, ret);\n\n    PASS();\n}\n\nSUITE(types_header_map) {\n    RUN_TEST(parse_header_map);\n    RUN_TEST(serialize_header_map);\n    RUN_TEST(find);\n    RUN_TEST(contains_key);\n    RUN_TEST(append);\n    RUN_TEST(is_full);\n    RUN_TEST(scanf_header);\n}\n"
  },
  {
    "path": "tests/types/message_body.c",
    "content": "#include <smolrtsp/types/message_body.h>\n\n#include <greatest.h>\n\nTEST parse_message_body(void) {\n    const CharSlice99 input =\n        CharSlice99_from_str(\" 012345 ~ abc(^*%  D#NIN#3   \");\n    const size_t content_length = input.len;\n\n    SmolRTSP_MessageBody result;\n    SmolRTSP_ParseResult ret;\n\n    ret = SmolRTSP_MessageBody_parse(&result, input, content_length + 100);\n    ASSERT(SmolRTSP_ParseResult_is_partial(ret));\n    ret = SmolRTSP_MessageBody_parse(&result, input, content_length + 3);\n    ASSERT(SmolRTSP_ParseResult_is_partial(ret));\n\n    ret = SmolRTSP_MessageBody_parse(&result, input, content_length);\n    ASSERT(SmolRTSP_ParseResult_is_complete(ret));\n\n    PASS();\n}\n\nTEST empty(void) {\n    ASSERT(CharSlice99_primitive_eq(\n        SmolRTSP_MessageBody_empty(), CharSlice99_empty()));\n    PASS();\n}\n\nSUITE(types_message_body) {\n    RUN_TEST(parse_message_body);\n    RUN_TEST(empty);\n}\n"
  },
  {
    "path": "tests/types/method.c",
    "content": "#include <smolrtsp/types/method.h>\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_Method)\n\nTEST parse_method(void) {\n    TEST_PARSE(\"OPTIONS \", SMOLRTSP_METHOD_OPTIONS);\n    TEST_PARSE(\"DESCRIBE \", SMOLRTSP_METHOD_DESCRIBE);\n    TEST_PARSE(\"ANNOUNCE \", SMOLRTSP_METHOD_ANNOUNCE);\n    TEST_PARSE(\"SETUP \", SMOLRTSP_METHOD_SETUP);\n    TEST_PARSE(\"PLAY \", SMOLRTSP_METHOD_PLAY);\n    TEST_PARSE(\"PAUSE \", SMOLRTSP_METHOD_PAUSE);\n    TEST_PARSE(\"TEARDOWN \", SMOLRTSP_METHOD_TEARDOWN);\n    TEST_PARSE(\"GET_PARAMETER \", SMOLRTSP_METHOD_GET_PARAMETER);\n    TEST_PARSE(\"SET_PARAMETER \", SMOLRTSP_METHOD_SET_PARAMETER);\n    TEST_PARSE(\"REDIRECT \", SMOLRTSP_METHOD_REDIRECT);\n    TEST_PARSE(\"RECORD \", SMOLRTSP_METHOD_RECORD);\n\n    SmolRTSP_Method result;\n\n    ASSERT(SmolRTSP_ParseResult_is_failure(\n        SmolRTSP_Method_parse(&result, CharSlice99_from_str(\"~123\"))));\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_Method_parse(\n        &result, CharSlice99_from_str(\"/ hello ~19r world\"))));\n\n    PASS();\n}\n\nSUITE(types_method) {\n    RUN_TEST(parse_method);\n}\n"
  },
  {
    "path": "tests/types/reason_phrase.c",
    "content": "#include <smolrtsp/types/reason_phrase.h>\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_ReasonPhrase)\n\nTEST parse_reason_phrase(void) {\n    TEST_PARSE(\n        \"Moved Temporarily\\r\\n\", CharSlice99_from_str(\"Moved Temporarily\"));\n\n    PASS();\n}\n\nSUITE(types_reason_phrase) {\n    RUN_TEST(parse_reason_phrase);\n}\n"
  },
  {
    "path": "tests/types/request.c",
    "content": "#include <smolrtsp/types/request.h>\n\n#define TEST_PARSE_INIT_TYPE(result) result = SmolRTSP_Request_uninit()\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_Request)\n\nTEST parse_request(void) {\n    const SmolRTSP_Request expected = {\n        .start_line =\n            {\n                .method = SMOLRTSP_METHOD_DESCRIBE,\n                .uri = CharSlice99_from_str(\"http://example.com\"),\n                .version = {.major = 1, .minor = 1},\n            },\n        .header_map = SmolRTSP_HeaderMap_from_array({\n            {SMOLRTSP_HEADER_C_SEQ, CharSlice99_from_str(\"123\")},\n            {SMOLRTSP_HEADER_CONTENT_LENGTH, CharSlice99_from_str(\"10\")},\n            {SMOLRTSP_HEADER_ACCEPT_LANGUAGE, CharSlice99_from_str(\"English\")},\n            {SMOLRTSP_HEADER_CONTENT_TYPE,\n             CharSlice99_from_str(\"application/octet-stream\")},\n        }),\n        .body = CharSlice99_from_str(\"0123456789\"),\n        .cseq = 123,\n    };\n\n    TEST_PARSE(\n        \"DESCRIBE http://example.com RTSP/1.1\\r\\n\"\n        \"CSeq: 123\\r\\n\"\n        \"Content-Length: 10\\r\\n\"\n        \"Accept-Language: English\\r\\n\"\n        \"Content-Type: application/octet-stream\\r\\n\"\n        \"\\r\\n0123456789\",\n        expected);\n\n    PASS();\n}\n\nTEST serialize_request(void) {\n    char buffer[500] = {0};\n\n    const SmolRTSP_Request request = {\n        .start_line =\n            {\n                .method = SMOLRTSP_METHOD_DESCRIBE,\n                .uri = CharSlice99_from_str(\"http://example.com\"),\n                .version = {1, 0},\n            },\n        .header_map = SmolRTSP_HeaderMap_from_array({\n            {SMOLRTSP_HEADER_CONTENT_TYPE,\n             CharSlice99_from_str(\"application/octet-stream\")},\n        }),\n        .body = CharSlice99_from_str(\"1234567890\"),\n        .cseq = 456,\n    };\n\n    const ssize_t ret =\n        SmolRTSP_Request_serialize(&request, smolrtsp_string_writer(buffer));\n\n    const char *expected =\n        \"DESCRIBE http://example.com RTSP/1.0\\r\\n\"\n        \"CSeq: 456\\r\\n\"\n        \"Content-Length: 10\\r\\n\"\n        \"Content-Type: application/octet-stream\\r\\n\"\n        \"\\r\\n1234567890\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nSUITE(types_request) {\n    RUN_TEST(parse_request);\n    RUN_TEST(serialize_request);\n}\n"
  },
  {
    "path": "tests/types/request_line.c",
    "content": "#include <smolrtsp/types/request_line.h>\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_RequestLine)\n\nTEST parse_request_line(void) {\n    const SmolRTSP_RequestLine expected = {\n        .method = SMOLRTSP_METHOD_DESCRIBE,\n        .uri = CharSlice99_from_str(\"http://example.com\"),\n        .version = {.major = 1, .minor = 1},\n    };\n\n    TEST_PARSE(\"DESCRIBE http://example.com RTSP/1.1\\r\\n\", expected);\n\n    SmolRTSP_RequestLine result;\n\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_RequestLine_parse(\n        &result, CharSlice99_from_str(\"!!! http://example.com RTSP/1.1\\r\\n\"))));\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_RequestLine_parse(\n        &result, CharSlice99_from_str(\n                     \"DESCRIBE http://example.com ABRACADABRA/1.1\\r\\n\"))));\n\n    PASS();\n}\n\nTEST serialize_request_line(void) {\n    char buffer[100] = {0};\n\n    const SmolRTSP_RequestLine line = {\n        .method = SMOLRTSP_METHOD_DESCRIBE,\n        .uri = CharSlice99_from_str(\"http://example.com\"),\n        .version = (SmolRTSP_RtspVersion){1, 0},\n    };\n\n    const ssize_t ret =\n        SmolRTSP_RequestLine_serialize(&line, smolrtsp_string_writer(buffer));\n\n    const char *expected = \"DESCRIBE http://example.com RTSP/1.0\\r\\n\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nSUITE(types_request_line) {\n    RUN_TEST(parse_request_line);\n    RUN_TEST(serialize_request_line);\n}\n"
  },
  {
    "path": "tests/types/request_uri.c",
    "content": "#include <smolrtsp/types/request_uri.h>\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_RequestUri)\n\nTEST parse_request_uri(void) {\n    TEST_PARSE(\n        \"http://example.com \", CharSlice99_from_str(\"http://example.com\"));\n\n    PASS();\n}\n\nSUITE(types_request_uri) {\n    RUN_TEST(parse_request_uri);\n}\n"
  },
  {
    "path": "tests/types/response.c",
    "content": "#include <smolrtsp/types/response.h>\n\n#define TEST_PARSE_INIT_TYPE(result) result = SmolRTSP_Response_uninit()\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_Response)\n\nTEST parse_response(void) {\n    const SmolRTSP_Response expected = {\n        .start_line =\n            {\n                .version = {.major = 1, .minor = 1},\n                .code = SMOLRTSP_STATUS_OK,\n                .reason = CharSlice99_from_str(\"OK\"),\n            },\n        .header_map = SmolRTSP_HeaderMap_from_array({\n            {SMOLRTSP_HEADER_C_SEQ, CharSlice99_from_str(\"123\")},\n            {SMOLRTSP_HEADER_CONTENT_LENGTH, CharSlice99_from_str(\"10\")},\n            {SMOLRTSP_HEADER_ACCEPT_LANGUAGE, CharSlice99_from_str(\"English\")},\n            {SMOLRTSP_HEADER_CONTENT_TYPE,\n             CharSlice99_from_str(\"application/octet-stream\")},\n        }),\n        .body = CharSlice99_from_str(\"0123456789\"),\n        .cseq = 123,\n    };\n\n    TEST_PARSE(\n        \"RTSP/1.1 200 OK\\r\\n\"\n        \"CSeq: 123\\r\\n\"\n        \"Content-Length: 10\\r\\n\"\n        \"Accept-Language: English\\r\\n\"\n        \"Content-Type: application/octet-stream\\r\\n\"\n        \"\\r\\n0123456789\",\n        expected);\n\n    PASS();\n}\n\nTEST serialize_response(void) {\n    char buffer[500] = {0};\n\n    const SmolRTSP_Response response = {\n        .start_line =\n            {\n                .version = {1, 0},\n                .code = SMOLRTSP_STATUS_OK,\n                .reason = CharSlice99_from_str(\"OK\"),\n            },\n        .header_map = SmolRTSP_HeaderMap_from_array({\n            {SMOLRTSP_HEADER_DATE,\n             CharSlice99_from_str(\"Thu, 05 Jun 1997 18:57:19 GMT\")},\n            {SMOLRTSP_HEADER_CONTENT_TYPE,\n             CharSlice99_from_str(\"application/octet-stream\")},\n        }),\n        .body = CharSlice99_from_str(\"1234567890\"),\n        .cseq = 456,\n    };\n\n    const ssize_t ret =\n        SmolRTSP_Response_serialize(&response, smolrtsp_string_writer(buffer));\n\n    const char *expected =\n        \"RTSP/1.0 200 OK\\r\\n\"\n        \"CSeq: 456\\r\\n\"\n        \"Content-Length: 10\\r\\n\"\n        \"Date: Thu, 05 Jun 1997 18:57:19 GMT\\r\\n\"\n        \"Content-Type: application/octet-stream\\r\\n\"\n        \"\\r\\n1234567890\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nSUITE(types_response) {\n    RUN_TEST(parse_response);\n    RUN_TEST(serialize_response);\n}\n"
  },
  {
    "path": "tests/types/response_line.c",
    "content": "#include <smolrtsp/types/response_line.h>\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_ResponseLine)\n\nTEST parse_response_line(void) {\n    const SmolRTSP_ResponseLine expected = {\n        .version = {.major = 1, .minor = 1},\n        .code = SMOLRTSP_STATUS_OK,\n        .reason = CharSlice99_from_str(\"OK\"),\n    };\n\n    TEST_PARSE(\"RTSP/1.1 200 OK\\r\\n\", expected);\n\n    SmolRTSP_ResponseLine result;\n\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_ResponseLine_parse(\n        &result, CharSlice99_from_str(\"ABRACADABRA/1.1 200 OK\\r\\n\"))));\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_ResponseLine_parse(\n        &result, CharSlice99_from_str(\"RTSP/42 200 OK\\r\\n\"))));\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_ResponseLine_parse(\n        &result, CharSlice99_from_str(\"RTSP/1.1 ~~~ OK\\r\\n\"))));\n\n    PASS();\n}\n\nTEST serialize_response_line(void) {\n    char buffer[100] = {0};\n\n    const SmolRTSP_ResponseLine line = {\n        .version = (SmolRTSP_RtspVersion){1, 0},\n        .code = SMOLRTSP_STATUS_OK,\n        .reason = CharSlice99_from_str(\"OK\"),\n    };\n\n    const ssize_t ret =\n        SmolRTSP_ResponseLine_serialize(&line, smolrtsp_string_writer(buffer));\n\n    const char *expected = \"RTSP/1.0 200 OK\\r\\n\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nSUITE(types_response_line) {\n    RUN_TEST(parse_response_line);\n    RUN_TEST(serialize_response_line);\n}\n"
  },
  {
    "path": "tests/types/rtsp_version.c",
    "content": "#include <smolrtsp/types/rtsp_version.h>\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_RtspVersion)\n\nTEST parse_rtsp_version(void) {\n    TEST_PARSE(\"RTSP/1.1 \", ((SmolRTSP_RtspVersion){1, 1}));\n    TEST_PARSE(\"RTSP/0.0 \", ((SmolRTSP_RtspVersion){0, 0}));\n    TEST_PARSE(\"RTSP/123.200 \", ((SmolRTSP_RtspVersion){123, 200}));\n    TEST_PARSE(\"RTSP/0.200 \", ((SmolRTSP_RtspVersion){0, 200}));\n\n    SmolRTSP_RtspVersion result;\n\n    ASSERT(SmolRTSP_ParseResult_is_failure(\n        SmolRTSP_RtspVersion_parse(&result, CharSlice99_from_str(\"192\"))));\n    ASSERT(SmolRTSP_ParseResult_is_failure(\n        SmolRTSP_RtspVersion_parse(&result, CharSlice99_from_str(\" ~ RTSP/\"))));\n\n    PASS();\n}\n\nTEST serialize_rtsp_version(void) {\n    char buffer[20] = {0};\n\n    const ssize_t ret = SmolRTSP_RtspVersion_serialize(\n        &(SmolRTSP_RtspVersion){1, 0}, smolrtsp_string_writer(buffer));\n\n    const char *expected = \"RTSP/1.0\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nSUITE(types_rtsp_version) {\n    RUN_TEST(parse_rtsp_version);\n    RUN_TEST(serialize_rtsp_version);\n}\n"
  },
  {
    "path": "tests/types/sdp.c",
    "content": "#include <smolrtsp/types/sdp.h>\n\n#include <greatest.h>\n\n#define AUDIO_PORT             123\n#define AUDIO_RTP_PAYLOAD_TYPE 456\n#define SERVER_IP_ADDR         \"0.0.0.0\"\n\nTEST serialize_sdp_line(void) {\n    char buffer[20] = {0};\n\n    const SmolRTSP_SdpLine sdp = {\n        .ty = SMOLRTSP_SDP_ATTR,\n        .value = CharSlice99_from_str(\"abc\"),\n    };\n\n    const ssize_t ret =\n        SmolRTSP_SdpLine_serialize(&sdp, smolrtsp_string_writer(buffer));\n\n    const char *expected = \"a=abc\\r\\n\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nTEST sdp_printf(void) {\n    char buffer[20] = {0};\n\n    const char *expected = \"a=abc 123 @ def\\r\\n\";\n\n    const ssize_t ret = smolrtsp_sdp_printf(\n        smolrtsp_string_writer(buffer), SMOLRTSP_SDP_ATTR, \"abc %d @ %s\", 123,\n        \"def\");\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nTEST sdp_describe(void) {\n    char buffer[256] = {0};\n    const SmolRTSP_Writer sdp = smolrtsp_string_writer(buffer);\n    ssize_t ret = 0;\n\n    // clang-format off\n    SMOLRTSP_SDP_DESCRIBE(\n        ret, sdp,\n        (SMOLRTSP_SDP_VERSION, \"0\"),\n        (SMOLRTSP_SDP_ORIGIN, \"SmolRTSP 3855320066 3855320129 IN IP4 0.0.0.0\"),\n        (SMOLRTSP_SDP_SESSION_NAME, \"SmolRTSP test\"),\n        (SMOLRTSP_SDP_CONNECTION, \"IN IP4 %s\", SERVER_IP_ADDR),\n        (SMOLRTSP_SDP_TIME, \"0 0\"),\n        (SMOLRTSP_SDP_MEDIA, \"audio %d RTP/AVP %d\", AUDIO_PORT, AUDIO_RTP_PAYLOAD_TYPE),\n        (SMOLRTSP_SDP_ATTR, \"control:audio\"));\n    // clang-format on\n\n    const char *expected =\n        \"v=0\\r\\n\"\n        \"o=SmolRTSP 3855320066 3855320129 IN IP4 0.0.0.0\\r\\n\"\n        \"s=SmolRTSP test\\r\\n\"\n        \"c=IN IP4 0.0.0.0\\r\\n\"\n        \"t=0 0\\r\\n\"\n        \"m=audio 123 RTP/AVP 456\\r\\n\"\n        \"a=control:audio\\r\\n\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nSUITE(types_sdp) {\n    RUN_TEST(serialize_sdp_line);\n    RUN_TEST(sdp_printf);\n    RUN_TEST(sdp_describe);\n}\n"
  },
  {
    "path": "tests/types/status_code.c",
    "content": "#include <smolrtsp/types/status_code.h>\n\n#include \"test_util.h\"\n#include <greatest.h>\n\nDEF_TEST_PARSE(SmolRTSP_StatusCode)\n\nTEST parse_status_code(void) {\n    TEST_PARSE(\"100 \", SMOLRTSP_STATUS_CONTINUE);\n    TEST_PARSE(\"200 \", SMOLRTSP_STATUS_OK);\n    TEST_PARSE(\"303 \", SMOLRTSP_STATUS_SEE_OTHER);\n    TEST_PARSE(\"404 \", SMOLRTSP_STATUS_NOT_FOUND);\n    TEST_PARSE(\"551 \", SMOLRTSP_STATUS_OPTION_NOT_SUPPORTED);\n\n    SmolRTSP_StatusCode result;\n\n    ASSERT(SmolRTSP_ParseResult_is_failure(\n        SmolRTSP_StatusCode_parse(&result, CharSlice99_from_str(\"blah\"))));\n    ASSERT(SmolRTSP_ParseResult_is_failure(SmolRTSP_StatusCode_parse(\n        &result, CharSlice99_from_str(\"~ 2424 blah\"))));\n\n    PASS();\n}\n\nTEST serialize_status_code(void) {\n    char buffer[20] = {0};\n\n    const SmolRTSP_StatusCode status = SMOLRTSP_STATUS_NOT_FOUND;\n\n    const ssize_t ret =\n        SmolRTSP_StatusCode_serialize(&status, smolrtsp_string_writer(buffer));\n\n    const char *expected = \"404\";\n\n    ASSERT_EQ((ssize_t)strlen(expected), ret);\n    ASSERT_STR_EQ(expected, buffer);\n\n    PASS();\n}\n\nSUITE(types_status_code) {\n    RUN_TEST(parse_status_code);\n    RUN_TEST(serialize_status_code);\n}\n"
  },
  {
    "path": "tests/types/test_util.h",
    "content": "#pragma once\n\n#include <smolrtsp/types/error.h>\n\n#include <stddef.h>\n\n#include <greatest.h>\n#include <slice99.h>\n\n#define TEST_PARSE(input, expected) CHECK_CALL(test_parse(input, expected))\n\n#ifndef TEST_PARSE_INIT_TYPE\n#define TEST_PARSE_INIT_TYPE(_result)\n#endif\n\n#ifndef TEST_PARSE_DEINIT_TYPE\n#define TEST_PARSE_DEINIT_TYPE(_result)\n#endif\n\n#define DEF_TEST_PARSE(T)                                                      \\\n    static enum greatest_test_res test_parse(const char *str, T expected) {    \\\n        T result;                                                              \\\n        TEST_PARSE_INIT_TYPE(result);                                          \\\n        const CharSlice99 input = CharSlice99_from_str((char *)str);           \\\n        SmolRTSP_ParseResult ret;                                              \\\n                                                                               \\\n        for (size_t i = 1; i < input.len; i++) {                               \\\n            ret = T##_parse(&result, CharSlice99_sub(input, 0, i));            \\\n            ASSERT(SmolRTSP_ParseResult_is_partial(ret));                      \\\n        }                                                                      \\\n                                                                               \\\n        ret = T##_parse(&result, input);                                       \\\n        match(ret) {                                                           \\\n            of(SmolRTSP_ParseResult_Success, status) {                         \\\n                ASSERT(SmolRTSP_ParseStatus_is_complete(*status));             \\\n                /* ASSERT_EQ(input.len, status->offset); */                    \\\n                ASSERT(T##_eq(&result, &expected));                            \\\n            }                                                                  \\\n            of(SmolRTSP_ParseResult_Failure, error) {                          \\\n                const int err_bytes = SmolRTSP_ParseError_print(               \\\n                    *error, smolrtsp_file_writer(stderr));                     \\\n                ASSERT(err_bytes >= 0);                                        \\\n                FAILm(\"Parsing failed\");                                       \\\n            }                                                                  \\\n        }                                                                      \\\n                                                                               \\\n        TEST_PARSE_DEINIT_TYPE(result);                                        \\\n        PASS();                                                                \\\n    }\n"
  },
  {
    "path": "tests/util.c",
    "content": "#include <smolrtsp/util.h>\n\n#include <inttypes.h>\n#include <stdint.h>\n\n#include <greatest.h>\n\nTEST parse_transport_config(void) {\n    SmolRTSP_TransportConfig config;\n    memset(&config, '\\0', sizeof config);\n\n    int ret = smolrtsp_parse_transport(\n        &config,\n        CharSlice99_from_str(\n            \"RTP/AVP/UDP;unicast;client_port=3056-3057;interleaved=4-5\"));\n    ASSERT_EQ(0, ret);\n    ASSERT_EQ(SmolRTSP_LowerTransport_UDP, config.lower);\n    ASSERT(config.unicast);\n    ASSERT(!config.multicast);\n\n    match(config.interleaved) {\n        of(SmolRTSP_ChannelPair_Some, val) {\n            ASSERT_EQ(4, val->rtp_channel);\n            ASSERT_EQ(5, val->rtcp_channel);\n        }\n        otherwise FAIL();\n    }\n\n    match(config.client_port) {\n        of(SmolRTSP_PortPair_Some, val) {\n            ASSERT_EQ(3056, val->rtp_port);\n            ASSERT_EQ(3057, val->rtcp_port);\n        }\n        otherwise FAIL();\n    }\n\n    PASS();\n}\n\nTEST parse_transport_minimal(void) {\n    SmolRTSP_TransportConfig config;\n    memset(&config, '\\0', sizeof config);\n\n#define CHECK_REST                                                             \\\n    do {                                                                       \\\n        ASSERT(!config.unicast);                                               \\\n        ASSERT(!config.multicast);                                             \\\n        ASSERT(MATCHES(config.interleaved, SmolRTSP_ChannelPair_None));        \\\n        ASSERT(MATCHES(config.client_port, SmolRTSP_PortPair_None));           \\\n    } while (0)\n\n    int ret =\n        smolrtsp_parse_transport(&config, CharSlice99_from_str(\"RTP/AVP\"));\n    ASSERT_EQ(0, ret);\n    ASSERT_EQ(SmolRTSP_LowerTransport_UDP, config.lower);\n    CHECK_REST;\n\n    ret =\n        smolrtsp_parse_transport(&config, CharSlice99_from_str(\"RTP/AVP/TCP\"));\n    ASSERT_EQ(0, ret);\n    ASSERT_EQ(SmolRTSP_LowerTransport_TCP, config.lower);\n    CHECK_REST;\n\n    ret =\n        smolrtsp_parse_transport(&config, CharSlice99_from_str(\"RTP/AVP/UDP\"));\n    ASSERT_EQ(0, ret);\n    ASSERT_EQ(SmolRTSP_LowerTransport_UDP, config.lower);\n    CHECK_REST;\n\n#undef CHECK_REST\n\n    PASS();\n}\n\nTEST parse_transport_trailing_semicolon(void) {\n    SmolRTSP_TransportConfig config;\n    memset(&config, '\\0', sizeof config);\n\n    int ret = smolrtsp_parse_transport(\n        &config,\n        CharSlice99_from_str(\n            \"RTP/AVP/UDP;unicast;client_port=3056-3057;interleaved=4-5;\"));\n    ASSERT_EQ(0, ret);\n    ASSERT_EQ(SmolRTSP_LowerTransport_UDP, config.lower);\n    ASSERT(config.unicast);\n    ASSERT(!config.multicast);\n\n    match(config.interleaved) {\n        of(SmolRTSP_ChannelPair_Some, val) {\n            ASSERT_EQ(4, val->rtp_channel);\n            ASSERT_EQ(5, val->rtcp_channel);\n        }\n        otherwise FAIL();\n    }\n\n    match(config.client_port) {\n        of(SmolRTSP_PortPair_Some, val) {\n            ASSERT_EQ(3056, val->rtp_port);\n            ASSERT_EQ(3057, val->rtcp_port);\n        }\n        otherwise FAIL();\n    }\n\n    PASS();\n}\n\nTEST interleaved_header(void) {\n    uint8_t channel_id = 123;\n    uint16_t payload_len = 54321;\n\n    const uint32_t binary =\n        smolrtsp_interleaved_header(channel_id, payload_len);\n\n    ASSERT_EQ(0xd4317b24, binary);\n\n    PASS();\n}\n\nTEST parse_interleaved_header(void) {\n    const uint8_t data[] = {'$', 42, 0b00110000, 0b00111001};\n    uint8_t channel_id = 0;\n    uint16_t payload_len = 0;\n\n    smolrtsp_parse_interleaved_header(data, &channel_id, &payload_len);\n\n    ASSERT_EQ_FMT(42, channel_id, \"%\" PRIu8);\n    ASSERT_EQ_FMT(12345, payload_len, \"%\" PRIu16);\n\n    PASS();\n}\n\nSUITE(util) {\n    RUN_TEST(parse_transport_config);\n    RUN_TEST(parse_transport_minimal);\n    RUN_TEST(parse_transport_trailing_semicolon);\n    RUN_TEST(interleaved_header);\n    RUN_TEST(parse_interleaved_header);\n}\n"
  },
  {
    "path": "tests/writer.c",
    "content": "#include <smolrtsp/writer.h>\n\n#include <greatest.h>\n\n#include <sys/socket.h>\n#include <sys/types.h>\n\n#include <slice99.h>\n\nTEST fd_writer(void) {\n    int fds[2];\n    const bool socketpair_ok = socketpair(AF_UNIX, SOCK_STREAM, 0, fds) == 0;\n    ASSERT(socketpair_ok);\n\n    SmolRTSP_Writer w = smolrtsp_fd_writer(&fds[0]);\n\n    char buffer[32] = {0};\n\n    {\n        ssize_t ret = VCALL(w, write, CharSlice99_from_str(\"abc\"));\n        ASSERT_EQ(3, ret);\n        read(fds[1], buffer, ret);\n        ASSERT_STRN_EQ(\"abc\", buffer, ret);\n    }\n\n    {\n        ssize_t ret = VCALL(w, writef, \"%d abc %s\", 123, \"!@#\");\n        ASSERT_EQ(11, ret);\n        read(fds[1], buffer, ret);\n        ASSERT_STRN_EQ(\"123 abc !@#\", buffer, ret);\n    }\n\n    close(fds[0]);\n    close(fds[1]);\n\n    PASS();\n}\n\nTEST file_writer(void) {\n    FILE *tmp = tmpfile();\n    assert(tmp);\n\n    SmolRTSP_Writer w = smolrtsp_file_writer(tmp);\n\n    char buffer[32] = {0};\n\n    {\n        ssize_t ret = VCALL(w, write, CharSlice99_from_str(\"abc\"));\n        ASSERT_EQ(3, ret);\n        fseek(tmp, 0, SEEK_SET);\n        fread(buffer, sizeof(char), ret, tmp);\n        ASSERT_STRN_EQ(\"abc\", buffer, ret);\n    }\n\n    {\n        ssize_t ret = VCALL(w, writef, \"%d abc %s\", 123, \"!@#\");\n        ASSERT_EQ(11, ret);\n        fseek(tmp, 0, SEEK_SET);\n        fread(buffer, sizeof(char), ret, tmp);\n        ASSERT_STRN_EQ(\"abc123 abc !@#\", buffer, ret);\n    }\n\n    fclose(tmp);\n\n    PASS();\n}\n\nTEST string_writer(void) {\n    char buffer[32] = {0};\n\n    SmolRTSP_Writer w = smolrtsp_string_writer(buffer);\n\n    {\n        ssize_t ret = VCALL(w, write, CharSlice99_from_str(\"abc\"));\n        ASSERT_EQ(3, ret);\n        ASSERT_STRN_EQ(\"abc\", buffer, ret);\n    }\n\n    {\n        ssize_t ret = VCALL(w, writef, \"%d abc %s\", 123, \"!@#\");\n        ASSERT_EQ(11, ret);\n        ASSERT_STR_EQ(\"abc123 abc !@#\", buffer);\n    }\n\n    PASS();\n}\n\nTEST write_slices(void) {\n    char buffer[128] = {0};\n    SmolRTSP_Writer w = smolrtsp_string_writer(buffer);\n\n    const CharSlice99 slices[] = {\n        CharSlice99_from_str(\"abc\"),\n        CharSlice99_from_str(\"~\"),\n        CharSlice99_from_str(\"&* 123\"),\n    };\n\n    const ssize_t bytes_written =\n        smolrtsp_write_slices(w, SLICE99_ARRAY_LEN(slices), slices);\n    ASSERT_EQ(10, bytes_written);\n    ASSERT_STR_EQ(\"abc~&* 123\", buffer);\n\n    PASS();\n}\n\nTEST write_slices_macro(void) {\n    char buffer[128] = {0};\n    SmolRTSP_Writer w = smolrtsp_string_writer(buffer);\n\n    const ssize_t bytes_written = SMOLRTSP_WRITE_SLICES(\n        w, {\n               CharSlice99_from_str(\"abc\"),\n               CharSlice99_from_str(\"~\"),\n               CharSlice99_from_str(\"&* 123\"),\n           });\n    ASSERT_EQ(10, bytes_written);\n    ASSERT_STR_EQ(\"abc~&* 123\", buffer);\n\n    PASS();\n}\n\nSUITE(writer) {\n    RUN_TEST(fd_writer);\n    RUN_TEST(file_writer);\n    RUN_TEST(string_writer);\n\n    RUN_TEST(write_slices);\n    RUN_TEST(write_slices_macro);\n}\n"
  }
]