husc 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1028) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +6 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +7 -0
  7. data/Gemfile.lock +64 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +44 -0
  10. data/Rakefile +6 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +8 -0
  13. data/husc.gemspec +29 -0
  14. data/lib/husc.rb +213 -0
  15. data/lib/husc/version.rb +3 -0
  16. data/vendor/bundle/bin/htmldiff +29 -0
  17. data/vendor/bundle/bin/ldiff +29 -0
  18. data/vendor/bundle/bin/nokogiri +27 -0
  19. data/vendor/bundle/bin/rake +27 -0
  20. data/vendor/bundle/bin/rspec +27 -0
  21. data/vendor/bundle/cache/connection_pool-2.2.2.gem +0 -0
  22. data/vendor/bundle/cache/diff-lcs-1.3.gem +0 -0
  23. data/vendor/bundle/cache/domain_name-0.5.20190701.gem +0 -0
  24. data/vendor/bundle/cache/http-cookie-1.0.3.gem +0 -0
  25. data/vendor/bundle/cache/mechanize-2.7.6.gem +0 -0
  26. data/vendor/bundle/cache/mime-types-3.3.1.gem +0 -0
  27. data/vendor/bundle/cache/mime-types-data-3.2019.1009.gem +0 -0
  28. data/vendor/bundle/cache/mini_portile2-2.4.0.gem +0 -0
  29. data/vendor/bundle/cache/net-http-digest_auth-1.4.1.gem +0 -0
  30. data/vendor/bundle/cache/net-http-persistent-3.1.0.gem +0 -0
  31. data/vendor/bundle/cache/nokogiri-1.10.7.gem +0 -0
  32. data/vendor/bundle/cache/ntlm-http-0.1.1.gem +0 -0
  33. data/vendor/bundle/cache/rake-12.3.3.gem +0 -0
  34. data/vendor/bundle/cache/rspec-3.9.0.gem +0 -0
  35. data/vendor/bundle/cache/rspec-core-3.9.1.gem +0 -0
  36. data/vendor/bundle/cache/rspec-expectations-3.9.0.gem +0 -0
  37. data/vendor/bundle/cache/rspec-mocks-3.9.1.gem +0 -0
  38. data/vendor/bundle/cache/rspec-support-3.9.2.gem +0 -0
  39. data/vendor/bundle/cache/unf-0.1.4.gem +0 -0
  40. data/vendor/bundle/cache/unf_ext-0.0.7.6.gem +0 -0
  41. data/vendor/bundle/cache/webrobots-0.1.2.gem +0 -0
  42. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/gem.build_complete +0 -0
  43. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/gem_make.out +153 -0
  44. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/mkmf.log +562 -0
  45. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/nokogiri-1.10.7/nokogiri/nokogiri.bundle +0 -0
  46. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/gem.build_complete +0 -0
  47. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/gem_make.out +38 -0
  48. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/mkmf.log +35 -0
  49. data/vendor/bundle/extensions/x86_64-darwin-18/2.6.0-static/unf_ext-0.0.7.6/unf_ext.bundle +0 -0
  50. data/vendor/bundle/gems/connection_pool-2.2.2/.gitignore +4 -0
  51. data/vendor/bundle/gems/connection_pool-2.2.2/.travis.yml +10 -0
  52. data/vendor/bundle/gems/connection_pool-2.2.2/Changes.md +123 -0
  53. data/vendor/bundle/gems/connection_pool-2.2.2/Gemfile +3 -0
  54. data/vendor/bundle/gems/connection_pool-2.2.2/LICENSE +20 -0
  55. data/vendor/bundle/gems/connection_pool-2.2.2/README.md +107 -0
  56. data/vendor/bundle/gems/connection_pool-2.2.2/Rakefile +6 -0
  57. data/vendor/bundle/gems/connection_pool-2.2.2/connection_pool.gemspec +21 -0
  58. data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool.rb +161 -0
  59. data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/monotonic_time.rb +66 -0
  60. data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/timed_stack.rb +176 -0
  61. data/vendor/bundle/gems/connection_pool-2.2.2/lib/connection_pool/version.rb +3 -0
  62. data/vendor/bundle/gems/connection_pool-2.2.2/test/helper.rb +8 -0
  63. data/vendor/bundle/gems/connection_pool-2.2.2/test/test_connection_pool.rb +516 -0
  64. data/vendor/bundle/gems/connection_pool-2.2.2/test/test_connection_pool_timed_stack.rb +149 -0
  65. data/vendor/bundle/gems/diff-lcs-1.3/.rspec +1 -0
  66. data/vendor/bundle/gems/diff-lcs-1.3/Code-of-Conduct.md +74 -0
  67. data/vendor/bundle/gems/diff-lcs-1.3/Contributing.md +83 -0
  68. data/vendor/bundle/gems/diff-lcs-1.3/History.md +220 -0
  69. data/vendor/bundle/gems/diff-lcs-1.3/License.md +39 -0
  70. data/vendor/bundle/gems/diff-lcs-1.3/Manifest.txt +37 -0
  71. data/vendor/bundle/gems/diff-lcs-1.3/README.rdoc +84 -0
  72. data/vendor/bundle/gems/diff-lcs-1.3/Rakefile +57 -0
  73. data/vendor/bundle/gems/diff-lcs-1.3/autotest/discover.rb +1 -0
  74. data/vendor/bundle/gems/diff-lcs-1.3/bin/htmldiff +32 -0
  75. data/vendor/bundle/gems/diff-lcs-1.3/bin/ldiff +6 -0
  76. data/vendor/bundle/gems/diff-lcs-1.3/docs/COPYING.txt +339 -0
  77. data/vendor/bundle/gems/diff-lcs-1.3/docs/artistic.txt +127 -0
  78. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff-lcs.rb +3 -0
  79. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs.rb +725 -0
  80. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/array.rb +7 -0
  81. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/block.rb +37 -0
  82. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/callbacks.rb +322 -0
  83. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/change.rb +181 -0
  84. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/htmldiff.rb +149 -0
  85. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/hunk.rb +276 -0
  86. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/internals.rb +307 -0
  87. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/ldiff.rb +167 -0
  88. data/vendor/bundle/gems/diff-lcs-1.3/lib/diff/lcs/string.rb +5 -0
  89. data/vendor/bundle/gems/diff-lcs-1.3/spec/change_spec.rb +65 -0
  90. data/vendor/bundle/gems/diff-lcs-1.3/spec/diff_spec.rb +47 -0
  91. data/vendor/bundle/gems/diff-lcs-1.3/spec/fixtures/ds1.csv +50 -0
  92. data/vendor/bundle/gems/diff-lcs-1.3/spec/fixtures/ds2.csv +51 -0
  93. data/vendor/bundle/gems/diff-lcs-1.3/spec/hunk_spec.rb +72 -0
  94. data/vendor/bundle/gems/diff-lcs-1.3/spec/issues_spec.rb +49 -0
  95. data/vendor/bundle/gems/diff-lcs-1.3/spec/lcs_spec.rb +56 -0
  96. data/vendor/bundle/gems/diff-lcs-1.3/spec/ldiff_spec.rb +47 -0
  97. data/vendor/bundle/gems/diff-lcs-1.3/spec/patch_spec.rb +422 -0
  98. data/vendor/bundle/gems/diff-lcs-1.3/spec/sdiff_spec.rb +214 -0
  99. data/vendor/bundle/gems/diff-lcs-1.3/spec/spec_helper.rb +321 -0
  100. data/vendor/bundle/gems/diff-lcs-1.3/spec/traverse_balanced_spec.rb +310 -0
  101. data/vendor/bundle/gems/diff-lcs-1.3/spec/traverse_sequences_spec.rb +139 -0
  102. data/vendor/bundle/gems/domain_name-0.5.20190701/.document +5 -0
  103. data/vendor/bundle/gems/domain_name-0.5.20190701/.gitignore +17 -0
  104. data/vendor/bundle/gems/domain_name-0.5.20190701/.travis.yml +21 -0
  105. data/vendor/bundle/gems/domain_name-0.5.20190701/CHANGELOG.md +219 -0
  106. data/vendor/bundle/gems/domain_name-0.5.20190701/Gemfile +4 -0
  107. data/vendor/bundle/gems/domain_name-0.5.20190701/LICENSE.txt +78 -0
  108. data/vendor/bundle/gems/domain_name-0.5.20190701/README.md +67 -0
  109. data/vendor/bundle/gems/domain_name-0.5.20190701/Rakefile +111 -0
  110. data/vendor/bundle/gems/domain_name-0.5.20190701/data/public_suffix_list.dat +12985 -0
  111. data/vendor/bundle/gems/domain_name-0.5.20190701/domain_name.gemspec +36 -0
  112. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name.rb +297 -0
  113. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/etld_data.rb +8787 -0
  114. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/etld_data.rb.erb +11 -0
  115. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/punycode.rb +283 -0
  116. data/vendor/bundle/gems/domain_name-0.5.20190701/lib/domain_name/version.rb +3 -0
  117. data/vendor/bundle/gems/domain_name-0.5.20190701/test/helper.rb +17 -0
  118. data/vendor/bundle/gems/domain_name-0.5.20190701/test/test_domain_name-punycode.rb +97 -0
  119. data/vendor/bundle/gems/domain_name-0.5.20190701/test/test_domain_name.rb +317 -0
  120. data/vendor/bundle/gems/domain_name-0.5.20190701/tool/gen_etld_data.rb +63 -0
  121. data/vendor/bundle/gems/http-cookie-1.0.3/.gitignore +17 -0
  122. data/vendor/bundle/gems/http-cookie-1.0.3/.travis.yml +21 -0
  123. data/vendor/bundle/gems/http-cookie-1.0.3/CHANGELOG.md +22 -0
  124. data/vendor/bundle/gems/http-cookie-1.0.3/Gemfile +4 -0
  125. data/vendor/bundle/gems/http-cookie-1.0.3/LICENSE.txt +24 -0
  126. data/vendor/bundle/gems/http-cookie-1.0.3/README.md +235 -0
  127. data/vendor/bundle/gems/http-cookie-1.0.3/Rakefile +20 -0
  128. data/vendor/bundle/gems/http-cookie-1.0.3/http-cookie.gemspec +34 -0
  129. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http-cookie.rb +1 -0
  130. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie.rb +685 -0
  131. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/ruby_compat.rb +63 -0
  132. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/scanner.rb +231 -0
  133. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie/version.rb +5 -0
  134. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar.rb +344 -0
  135. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/abstract_saver.rb +65 -0
  136. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/abstract_store.rb +124 -0
  137. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/cookiestxt_saver.rb +106 -0
  138. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/hash_store.rb +163 -0
  139. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/mozilla_store.rb +458 -0
  140. data/vendor/bundle/gems/http-cookie-1.0.3/lib/http/cookie_jar/yaml_saver.rb +76 -0
  141. data/vendor/bundle/gems/http-cookie-1.0.3/test/helper.rb +55 -0
  142. data/vendor/bundle/gems/http-cookie-1.0.3/test/mechanize.yml +101 -0
  143. data/vendor/bundle/gems/http-cookie-1.0.3/test/simplecov_start.rb +2 -0
  144. data/vendor/bundle/gems/http-cookie-1.0.3/test/test_http_cookie.rb +1122 -0
  145. data/vendor/bundle/gems/http-cookie-1.0.3/test/test_http_cookie_jar.rb +985 -0
  146. data/vendor/bundle/gems/mechanize-2.7.6/.autotest +6 -0
  147. data/vendor/bundle/gems/mechanize-2.7.6/.gitignore +15 -0
  148. data/vendor/bundle/gems/mechanize-2.7.6/.travis.yml +36 -0
  149. data/vendor/bundle/gems/mechanize-2.7.6/CHANGELOG.rdoc +999 -0
  150. data/vendor/bundle/gems/mechanize-2.7.6/EXAMPLES.rdoc +192 -0
  151. data/vendor/bundle/gems/mechanize-2.7.6/GUIDE.rdoc +168 -0
  152. data/vendor/bundle/gems/mechanize-2.7.6/Gemfile +6 -0
  153. data/vendor/bundle/gems/mechanize-2.7.6/LICENSE.rdoc +20 -0
  154. data/vendor/bundle/gems/mechanize-2.7.6/README.rdoc +77 -0
  155. data/vendor/bundle/gems/mechanize-2.7.6/Rakefile +41 -0
  156. data/vendor/bundle/gems/mechanize-2.7.6/examples/flickr_upload.rb +22 -0
  157. data/vendor/bundle/gems/mechanize-2.7.6/examples/mech-dump.rb +5 -0
  158. data/vendor/bundle/gems/mechanize-2.7.6/examples/proxy_req.rb +7 -0
  159. data/vendor/bundle/gems/mechanize-2.7.6/examples/rubygems.rb +23 -0
  160. data/vendor/bundle/gems/mechanize-2.7.6/examples/spider.rb +22 -0
  161. data/vendor/bundle/gems/mechanize-2.7.6/examples/wikipedia_links_to_philosophy.rb +159 -0
  162. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize.rb +1369 -0
  163. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/chunked_termination_error.rb +7 -0
  164. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/content_type_error.rb +13 -0
  165. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/cookie.rb +73 -0
  166. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/cookie_jar.rb +190 -0
  167. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/directory_saver.rb +77 -0
  168. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/download.rb +84 -0
  169. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/element_matcher.rb +68 -0
  170. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/element_not_found_error.rb +19 -0
  171. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file.rb +93 -0
  172. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_connection.rb +17 -0
  173. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_request.rb +30 -0
  174. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_response.rb +80 -0
  175. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/file_saver.rb +39 -0
  176. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form.rb +724 -0
  177. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/button.rb +6 -0
  178. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/check_box.rb +19 -0
  179. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/field.rb +124 -0
  180. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/file_upload.rb +21 -0
  181. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/hidden.rb +3 -0
  182. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/image_button.rb +19 -0
  183. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/keygen.rb +34 -0
  184. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/multi_select_list.rb +93 -0
  185. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/option.rb +51 -0
  186. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/radio_button.rb +69 -0
  187. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/reset.rb +3 -0
  188. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/select_list.rb +44 -0
  189. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/submit.rb +3 -0
  190. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/text.rb +3 -0
  191. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/form/textarea.rb +3 -0
  192. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/headers.rb +23 -0
  193. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/history.rb +82 -0
  194. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http.rb +8 -0
  195. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/agent.rb +1281 -0
  196. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_challenge.rb +65 -0
  197. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_realm.rb +31 -0
  198. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/auth_store.rb +123 -0
  199. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/content_disposition_parser.rb +191 -0
  200. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/http/www_authenticate_parser.rb +178 -0
  201. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/image.rb +6 -0
  202. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page.rb +648 -0
  203. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/base.rb +7 -0
  204. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/frame.rb +29 -0
  205. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/image.rb +182 -0
  206. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/label.rb +20 -0
  207. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/link.rb +108 -0
  208. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/page/meta_refresh.rb +78 -0
  209. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/parser.rb +182 -0
  210. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/pluggable_parsers.rb +179 -0
  211. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/prependable.rb +89 -0
  212. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/redirect_limit_reached_error.rb +19 -0
  213. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/redirect_not_get_or_head_error.rb +21 -0
  214. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/response_code_error.rb +26 -0
  215. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/response_read_error.rb +38 -0
  216. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/robots_disallowed_error.rb +28 -0
  217. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case.rb +330 -0
  218. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/.document +1 -0
  219. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/bad_chunking_servlet.rb +14 -0
  220. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/basic_auth_servlet.rb +24 -0
  221. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/content_type_servlet.rb +8 -0
  222. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/digest_auth_servlet.rb +33 -0
  223. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/file_upload_servlet.rb +20 -0
  224. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/form_servlet.rb +55 -0
  225. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/gzip_servlet.rb +32 -0
  226. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/header_servlet.rb +14 -0
  227. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/http_refresh_servlet.rb +8 -0
  228. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/infinite_redirect_servlet.rb +10 -0
  229. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/infinite_refresh_servlet.rb +9 -0
  230. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/many_cookies_as_string_servlet.rb +37 -0
  231. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/many_cookies_servlet.rb +33 -0
  232. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/modified_since_servlet.rb +21 -0
  233. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/ntlm_servlet.rb +30 -0
  234. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/one_cookie_no_spaces_servlet.rb +11 -0
  235. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/one_cookie_servlet.rb +11 -0
  236. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/quoted_value_cookie_servlet.rb +11 -0
  237. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/redirect_servlet.rb +13 -0
  238. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/referer_servlet.rb +12 -0
  239. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/refresh_with_empty_url.rb +15 -0
  240. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/refresh_without_url.rb +14 -0
  241. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/response_code_servlet.rb +15 -0
  242. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/robots_txt_servlet.rb +14 -0
  243. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/send_cookies_servlet.rb +19 -0
  244. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/server.rb +36 -0
  245. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/servlets.rb +58 -0
  246. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/test_case/verb_servlet.rb +11 -0
  247. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/unauthorized_error.rb +22 -0
  248. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/unsupported_scheme_error.rb +8 -0
  249. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/util.rb +161 -0
  250. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/version.rb +3 -0
  251. data/vendor/bundle/gems/mechanize-2.7.6/lib/mechanize/xml_file.rb +47 -0
  252. data/vendor/bundle/gems/mechanize-2.7.6/mechanize.gemspec +66 -0
  253. data/vendor/bundle/gems/mechanize-2.7.6/test/data/htpasswd +1 -0
  254. data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.crt +16 -0
  255. data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.csr +12 -0
  256. data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.key +15 -0
  257. data/vendor/bundle/gems/mechanize-2.7.6/test/data/server.pem +15 -0
  258. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/alt_text.html +10 -0
  259. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/bad_form_test.html +9 -0
  260. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/button.jpg +0 -0
  261. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/canonical_uri.html +9 -0
  262. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/dir with spaces/foo.html +1 -0
  263. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/empty_form.html +6 -0
  264. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/file_upload.html +26 -0
  265. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/find_link.html +38 -0
  266. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_multi_select.html +16 -0
  267. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_multival.html +37 -0
  268. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_no_action.html +18 -0
  269. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_no_input_name.html +16 -0
  270. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_order_test.html +11 -0
  271. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_select.html +16 -0
  272. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_set_fields.html +14 -0
  273. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/form_test.html +188 -0
  274. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/frame_referer_test.html +10 -0
  275. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/frame_test.html +30 -0
  276. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/google.html +13 -0
  277. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/index.html +6 -0
  278. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/link with space.html +5 -0
  279. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/meta_cookie.html +11 -0
  280. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/no_title_test.html +6 -0
  281. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/noindex.html +9 -0
  282. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/rails_3_encoding_hack_form_test.html +27 -0
  283. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/relative/tc_relative_links.html +21 -0
  284. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/robots.html +8 -0
  285. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_bad_charset.html +9 -0
  286. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_bad_links.html +5 -0
  287. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_base_link.html +8 -0
  288. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_blank_form.html +11 -0
  289. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_charset.html +6 -0
  290. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_checkboxes.html +19 -0
  291. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_encoded_links.html +5 -0
  292. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_field_precedence.html +11 -0
  293. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta.html +8 -0
  294. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta_loop_1.html +8 -0
  295. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_follow_meta_loop_2.html +8 -0
  296. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_form_action.html +48 -0
  297. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_links.html +21 -0
  298. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_meta_in_body.html +9 -0
  299. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_pretty_print.html +17 -0
  300. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_referer.html +16 -0
  301. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_relative_links.html +19 -0
  302. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/tc_textarea.html +23 -0
  303. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/test_click.html +11 -0
  304. data/vendor/bundle/gems/mechanize-2.7.6/test/htdocs/unusual______.html +5 -0
  305. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize.rb +1361 -0
  306. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_cookie.rb +547 -0
  307. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_cookie_jar.rb +582 -0
  308. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_directory_saver.rb +59 -0
  309. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_download.rb +89 -0
  310. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_element_not_found_error.rb +15 -0
  311. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file.rb +107 -0
  312. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_connection.rb +21 -0
  313. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_request.rb +25 -0
  314. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_response.rb +23 -0
  315. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_file_saver.rb +21 -0
  316. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form.rb +1012 -0
  317. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_check_box.rb +48 -0
  318. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_encoding.rb +109 -0
  319. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_field.rb +77 -0
  320. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_file_upload.rb +20 -0
  321. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_image_button.rb +12 -0
  322. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_keygen.rb +32 -0
  323. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_multi_select_list.rb +97 -0
  324. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_option.rb +59 -0
  325. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_radio_button.rb +95 -0
  326. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_select_list.rb +80 -0
  327. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_form_textarea.rb +52 -0
  328. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_headers.rb +35 -0
  329. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_history.rb +103 -0
  330. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_agent.rb +1754 -0
  331. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_challenge.rb +63 -0
  332. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_realm.rb +55 -0
  333. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_auth_store.rb +232 -0
  334. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_content_disposition_parser.rb +139 -0
  335. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_http_www_authenticate_parser.rb +203 -0
  336. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_image.rb +8 -0
  337. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_link.rb +146 -0
  338. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page.rb +280 -0
  339. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_encoding.rb +187 -0
  340. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_frame.rb +16 -0
  341. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_image.rb +190 -0
  342. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_link.rb +373 -0
  343. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_page_meta_refresh.rb +150 -0
  344. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_parser.rb +315 -0
  345. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_pluggable_parser.rb +67 -0
  346. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_redirect_limit_reached_error.rb +24 -0
  347. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_redirect_not_get_or_head_error.rb +14 -0
  348. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_response_read_error.rb +28 -0
  349. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_subclass.rb +22 -0
  350. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_util.rb +143 -0
  351. data/vendor/bundle/gems/mechanize-2.7.6/test/test_mechanize_xml_file.rb +29 -0
  352. data/vendor/bundle/gems/mechanize-2.7.6/test/test_multi_select.rb +119 -0
  353. data/vendor/bundle/gems/mime-types-3.3.1/Code-of-Conduct.md +73 -0
  354. data/vendor/bundle/gems/mime-types-3.3.1/Contributing.md +143 -0
  355. data/vendor/bundle/gems/mime-types-3.3.1/History.md +240 -0
  356. data/vendor/bundle/gems/mime-types-3.3.1/Licence.md +25 -0
  357. data/vendor/bundle/gems/mime-types-3.3.1/Manifest.txt +31 -0
  358. data/vendor/bundle/gems/mime-types-3.3.1/README.rdoc +193 -0
  359. data/vendor/bundle/gems/mime-types-3.3.1/Rakefile +284 -0
  360. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime-types.rb +3 -0
  361. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/type.rb +587 -0
  362. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/type/columnar.rb +57 -0
  363. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types.rb +231 -0
  364. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/_columnar.rb +136 -0
  365. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/cache.rb +58 -0
  366. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +3 -0
  367. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/container.rb +96 -0
  368. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/deprecations.rb +32 -0
  369. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/full.rb +19 -0
  370. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/loader.rb +146 -0
  371. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/logger.rb +39 -0
  372. data/vendor/bundle/gems/mime-types-3.3.1/lib/mime/types/registry.rb +90 -0
  373. data/vendor/bundle/gems/mime-types-3.3.1/test/bad-fixtures/malformed +9 -0
  374. data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/json.json +1 -0
  375. data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/old-data +9 -0
  376. data/vendor/bundle/gems/mime-types-3.3.1/test/fixture/yaml.yaml +55 -0
  377. data/vendor/bundle/gems/mime-types-3.3.1/test/minitest_helper.rb +13 -0
  378. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_type.rb +610 -0
  379. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types.rb +169 -0
  380. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_cache.rb +118 -0
  381. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_class.rb +159 -0
  382. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_lazy.rb +49 -0
  383. data/vendor/bundle/gems/mime-types-3.3.1/test/test_mime_types_loader.rb +32 -0
  384. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Code-of-Conduct.md +75 -0
  385. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Contributing.md +162 -0
  386. data/vendor/bundle/gems/mime-types-data-3.2019.1009/History.md +406 -0
  387. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Licence.md +25 -0
  388. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Manifest.txt +31 -0
  389. data/vendor/bundle/gems/mime-types-data-3.2019.1009/README.md +63 -0
  390. data/vendor/bundle/gems/mime-types-data-3.2019.1009/Rakefile +94 -0
  391. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime-types.json +1 -0
  392. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.content_type.column +2215 -0
  393. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.docs.column +2215 -0
  394. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.encoding.column +2215 -0
  395. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.flags.column +2215 -0
  396. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.friendly.column +2215 -0
  397. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.pext.column +2215 -0
  398. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.use_instead.column +2215 -0
  399. data/vendor/bundle/gems/mime-types-data-3.2019.1009/data/mime.xrefs.column +2215 -0
  400. data/vendor/bundle/gems/mime-types-data-3.2019.1009/lib/mime-types-data.rb +3 -0
  401. data/vendor/bundle/gems/mime-types-data-3.2019.1009/lib/mime/types/data.rb +21 -0
  402. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/application.yaml +16361 -0
  403. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/audio.yaml +1644 -0
  404. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/chemical.yaml +71 -0
  405. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/conference.yaml +9 -0
  406. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/drawing.yaml +15 -0
  407. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/font.yaml +65 -0
  408. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/image.yaml +1069 -0
  409. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/message.yaml +200 -0
  410. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/model.yaml +302 -0
  411. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/multipart.yaml +179 -0
  412. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/text.yaml +1055 -0
  413. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/video.yaml +1070 -0
  414. data/vendor/bundle/gems/mime-types-data-3.2019.1009/types/world.yaml +8 -0
  415. data/vendor/bundle/gems/mini_portile2-2.4.0/.concourse.yml +83 -0
  416. data/vendor/bundle/gems/mini_portile2-2.4.0/.gitignore +7 -0
  417. data/vendor/bundle/gems/mini_portile2-2.4.0/.travis.yml +15 -0
  418. data/vendor/bundle/gems/mini_portile2-2.4.0/CHANGELOG.md +209 -0
  419. data/vendor/bundle/gems/mini_portile2-2.4.0/Gemfile +4 -0
  420. data/vendor/bundle/gems/mini_portile2-2.4.0/LICENSE.txt +20 -0
  421. data/vendor/bundle/gems/mini_portile2-2.4.0/README.md +245 -0
  422. data/vendor/bundle/gems/mini_portile2-2.4.0/Rakefile +29 -0
  423. data/vendor/bundle/gems/mini_portile2-2.4.0/appveyor.yml +25 -0
  424. data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/mini_portile.yml +141 -0
  425. data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/tasks/rake-test/task.ps1 +11 -0
  426. data/vendor/bundle/gems/mini_portile2-2.4.0/concourse/tasks/rake-test/task.sh +13 -0
  427. data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2.rb +3 -0
  428. data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile.rb +556 -0
  429. data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/mini_portile_cmake.rb +40 -0
  430. data/vendor/bundle/gems/mini_portile2-2.4.0/lib/mini_portile2/version.rb +3 -0
  431. data/vendor/bundle/gems/mini_portile2-2.4.0/mini_portile2.gemspec +42 -0
  432. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/git/config +4 -0
  433. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data +1 -0
  434. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data.asc +9 -0
  435. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/gpg-fixtures/data.invalid.asc +9 -0
  436. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/patch 1.diff +7 -0
  437. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test mini portile-1.0.0/configure +11 -0
  438. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-cmake-1.0/CMakeLists.txt +7 -0
  439. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-cmake-1.0/hello.c +4 -0
  440. data/vendor/bundle/gems/mini_portile2-2.4.0/test/assets/test-download-archive.tar.gz +1 -0
  441. data/vendor/bundle/gems/mini_portile2-2.4.0/test/helper.rb +60 -0
  442. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_cmake.rb +64 -0
  443. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_cook.rb +115 -0
  444. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_digest.rb +215 -0
  445. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_download.rb +71 -0
  446. data/vendor/bundle/gems/mini_portile2-2.4.0/test/test_proxy.rb +121 -0
  447. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/.autotest +8 -0
  448. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/.travis.yml +16 -0
  449. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/History.txt +52 -0
  450. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/Manifest.txt +10 -0
  451. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/README.txt +44 -0
  452. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/Rakefile +25 -0
  453. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/lib/net/http/digest_auth.rb +173 -0
  454. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/sample/auth_server.rb +47 -0
  455. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/sample/net_http_example.rb +27 -0
  456. data/vendor/bundle/gems/net-http-digest_auth-1.4.1/test/test_net_http_digest_auth.rb +130 -0
  457. data/vendor/bundle/gems/net-http-persistent-3.1.0/.autotest +9 -0
  458. data/vendor/bundle/gems/net-http-persistent-3.1.0/.gemtest +0 -0
  459. data/vendor/bundle/gems/net-http-persistent-3.1.0/.travis.yml +24 -0
  460. data/vendor/bundle/gems/net-http-persistent-3.1.0/Gemfile +15 -0
  461. data/vendor/bundle/gems/net-http-persistent-3.1.0/History.txt +391 -0
  462. data/vendor/bundle/gems/net-http-persistent-3.1.0/Manifest.txt +14 -0
  463. data/vendor/bundle/gems/net-http-persistent-3.1.0/README.rdoc +82 -0
  464. data/vendor/bundle/gems/net-http-persistent-3.1.0/Rakefile +31 -0
  465. data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent.rb +1202 -0
  466. data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/connection.rb +40 -0
  467. data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/pool.rb +53 -0
  468. data/vendor/bundle/gems/net-http-persistent-3.1.0/lib/net/http/persistent/timed_stack_multi.rb +79 -0
  469. data/vendor/bundle/gems/net-http-persistent-3.1.0/test/test_net_http_persistent.rb +1621 -0
  470. data/vendor/bundle/gems/net-http-persistent-3.1.0/test/test_net_http_persistent_timed_stack_multi.rb +151 -0
  471. data/vendor/bundle/gems/nokogiri-1.10.7/LICENSE-DEPENDENCIES.md +1614 -0
  472. data/vendor/bundle/gems/nokogiri-1.10.7/LICENSE.md +9 -0
  473. data/vendor/bundle/gems/nokogiri-1.10.7/README.md +198 -0
  474. data/vendor/bundle/gems/nokogiri-1.10.7/bin/nokogiri +118 -0
  475. data/vendor/bundle/gems/nokogiri-1.10.7/dependencies.yml +74 -0
  476. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/.sitearchdir.-.nokogiri.time +0 -0
  477. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/Makefile +629 -0
  478. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/depend +358 -0
  479. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/extconf.rb +686 -0
  480. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.c +170 -0
  481. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.h +10 -0
  482. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_document.o +0 -0
  483. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.c +279 -0
  484. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.h +10 -0
  485. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_element_description.o +0 -0
  486. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.c +32 -0
  487. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.h +8 -0
  488. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_entity_lookup.o +0 -0
  489. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.c +116 -0
  490. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.h +11 -0
  491. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_parser_context.o +0 -0
  492. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.c +87 -0
  493. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.h +9 -0
  494. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/html_sax_push_parser.o +0 -0
  495. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.bundle +0 -0
  496. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.c +141 -0
  497. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.h +121 -0
  498. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/nokogiri.o +0 -0
  499. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.c +103 -0
  500. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.h +9 -0
  501. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attr.o +0 -0
  502. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.c +70 -0
  503. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.h +9 -0
  504. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_attribute_decl.o +0 -0
  505. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.c +62 -0
  506. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.h +9 -0
  507. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_cdata.o +0 -0
  508. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.c +69 -0
  509. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.h +9 -0
  510. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_comment.o +0 -0
  511. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.c +608 -0
  512. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.h +23 -0
  513. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document.o +0 -0
  514. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.c +48 -0
  515. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.h +10 -0
  516. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_document_fragment.o +0 -0
  517. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.c +202 -0
  518. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.h +10 -0
  519. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_dtd.o +0 -0
  520. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.c +123 -0
  521. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.h +10 -0
  522. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_content.o +0 -0
  523. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.c +69 -0
  524. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.h +9 -0
  525. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_element_decl.o +0 -0
  526. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.c +79 -0
  527. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.h +8 -0
  528. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_encoding_handler.o +0 -0
  529. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.c +110 -0
  530. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.h +10 -0
  531. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_decl.o +0 -0
  532. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.c +52 -0
  533. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.h +9 -0
  534. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_entity_reference.o +0 -0
  535. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.c +61 -0
  536. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.h +11 -0
  537. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_io.o +0 -0
  538. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.c +112 -0
  539. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.h +12 -0
  540. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_libxml2_hacks.o +0 -0
  541. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.c +111 -0
  542. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.h +14 -0
  543. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_namespace.o +0 -0
  544. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.c +1753 -0
  545. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.h +13 -0
  546. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node.o +0 -0
  547. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.c +486 -0
  548. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.h +12 -0
  549. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_node_set.o +0 -0
  550. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.c +56 -0
  551. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.h +9 -0
  552. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_processing_instruction.o +0 -0
  553. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.c +668 -0
  554. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.h +10 -0
  555. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_reader.o +0 -0
  556. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.c +161 -0
  557. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.h +9 -0
  558. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_relax_ng.o +0 -0
  559. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.c +310 -0
  560. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.h +39 -0
  561. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser.o +0 -0
  562. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.c +262 -0
  563. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.h +10 -0
  564. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_parser_context.o +0 -0
  565. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.c +159 -0
  566. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.h +9 -0
  567. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_sax_push_parser.o +0 -0
  568. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.c +205 -0
  569. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.h +9 -0
  570. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_schema.o +0 -0
  571. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.c +64 -0
  572. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.h +13 -0
  573. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_syntax_error.o +0 -0
  574. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.c +52 -0
  575. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.h +9 -0
  576. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_text.o +0 -0
  577. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.c +298 -0
  578. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.h +10 -0
  579. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xml_xpath_context.o +0 -0
  580. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.c +270 -0
  581. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.h +14 -0
  582. data/vendor/bundle/gems/nokogiri-1.10.7/ext/nokogiri/xslt_stylesheet.o +0 -0
  583. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri.rb +144 -0
  584. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css.rb +27 -0
  585. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/node.rb +52 -0
  586. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser.rb +750 -0
  587. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser.y +272 -0
  588. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/parser_extras.rb +91 -0
  589. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/syntax_error.rb +7 -0
  590. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/tokenizer.rb +153 -0
  591. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/tokenizer.rex +55 -0
  592. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/css/xpath_visitor.rb +230 -0
  593. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/decorators/slop.rb +42 -0
  594. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html.rb +37 -0
  595. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/builder.rb +35 -0
  596. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/document.rb +335 -0
  597. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/document_fragment.rb +49 -0
  598. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/element_description.rb +23 -0
  599. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/element_description_defaults.rb +671 -0
  600. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/entity_lookup.rb +13 -0
  601. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/parser.rb +62 -0
  602. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/parser_context.rb +16 -0
  603. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/html/sax/push_parser.rb +36 -0
  604. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/nokogiri.bundle +0 -0
  605. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/syntax_error.rb +4 -0
  606. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/version.rb +109 -0
  607. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml.rb +75 -0
  608. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/attr.rb +14 -0
  609. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/attribute_decl.rb +18 -0
  610. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/builder.rb +446 -0
  611. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/cdata.rb +11 -0
  612. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/character_data.rb +7 -0
  613. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/document.rb +285 -0
  614. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/document_fragment.rb +160 -0
  615. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/dtd.rb +32 -0
  616. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/element_content.rb +36 -0
  617. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/element_decl.rb +13 -0
  618. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/entity_decl.rb +19 -0
  619. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/entity_reference.rb +18 -0
  620. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/namespace.rb +13 -0
  621. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node.rb +902 -0
  622. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node/save_options.rb +61 -0
  623. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/node_set.rb +371 -0
  624. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/notation.rb +6 -0
  625. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/parse_options.rb +120 -0
  626. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp.rb +2 -0
  627. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp/character_data.rb +18 -0
  628. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/pp/node.rb +56 -0
  629. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/processing_instruction.rb +8 -0
  630. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/reader.rb +112 -0
  631. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/relax_ng.rb +32 -0
  632. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax.rb +4 -0
  633. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/document.rb +171 -0
  634. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/parser.rb +122 -0
  635. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/parser_context.rb +16 -0
  636. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/sax/push_parser.rb +60 -0
  637. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/schema.rb +63 -0
  638. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/searchable.rb +230 -0
  639. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/syntax_error.rb +70 -0
  640. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/text.rb +9 -0
  641. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath.rb +10 -0
  642. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath/syntax_error.rb +11 -0
  643. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xml/xpath_context.rb +16 -0
  644. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xslt.rb +56 -0
  645. data/vendor/bundle/gems/nokogiri-1.10.7/lib/nokogiri/xslt/stylesheet.rb +25 -0
  646. data/vendor/bundle/gems/nokogiri-1.10.7/lib/xsd/xmlparser/nokogiri.rb +102 -0
  647. data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0001-Revert-Do-not-URI-escape-in-server-side-includes.patch +78 -0
  648. data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0002-Remove-script-macro-support.patch +40 -0
  649. data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0003-Update-entities-to-remove-handling-of-ssi.patch +44 -0
  650. data/vendor/bundle/gems/nokogiri-1.10.7/patches/libxml2/0004-libxml2.la-is-in-top_builddir.patch +25 -0
  651. data/vendor/bundle/gems/ntlm-http-0.1.1/README +25 -0
  652. data/vendor/bundle/gems/ntlm-http-0.1.1/Rakefile +66 -0
  653. data/vendor/bundle/gems/ntlm-http-0.1.1/examples/http.rb +86 -0
  654. data/vendor/bundle/gems/ntlm-http-0.1.1/examples/imap.rb +73 -0
  655. data/vendor/bundle/gems/ntlm-http-0.1.1/examples/smtp.rb +94 -0
  656. data/vendor/bundle/gems/ntlm-http-0.1.1/lib/net/ntlm.rb +774 -0
  657. data/vendor/bundle/gems/ntlm-http-0.1.1/lib/net/ntlm_http.rb +854 -0
  658. data/vendor/bundle/gems/ntlm-http-0.1.1/ntlm-http-0.1.1.gemspec +16 -0
  659. data/vendor/bundle/gems/ntlm-http-0.1.1/test/function_test.rb +111 -0
  660. data/vendor/bundle/gems/rake-12.3.3/CONTRIBUTING.rdoc +43 -0
  661. data/vendor/bundle/gems/rake-12.3.3/Gemfile +3 -0
  662. data/vendor/bundle/gems/rake-12.3.3/History.rdoc +2344 -0
  663. data/vendor/bundle/gems/rake-12.3.3/MIT-LICENSE +21 -0
  664. data/vendor/bundle/gems/rake-12.3.3/README.rdoc +156 -0
  665. data/vendor/bundle/gems/rake-12.3.3/Rakefile +41 -0
  666. data/vendor/bundle/gems/rake-12.3.3/azure-pipelines.yml +11 -0
  667. data/vendor/bundle/gems/rake-12.3.3/bin/bundle +105 -0
  668. data/vendor/bundle/gems/rake-12.3.3/bin/console +7 -0
  669. data/vendor/bundle/gems/rake-12.3.3/bin/rake +29 -0
  670. data/vendor/bundle/gems/rake-12.3.3/bin/rdoc +29 -0
  671. data/vendor/bundle/gems/rake-12.3.3/bin/rubocop +29 -0
  672. data/vendor/bundle/gems/rake-12.3.3/bin/setup +6 -0
  673. data/vendor/bundle/gems/rake-12.3.3/doc/command_line_usage.rdoc +158 -0
  674. data/vendor/bundle/gems/rake-12.3.3/doc/example/Rakefile1 +38 -0
  675. data/vendor/bundle/gems/rake-12.3.3/doc/example/Rakefile2 +35 -0
  676. data/vendor/bundle/gems/rake-12.3.3/doc/example/a.c +6 -0
  677. data/vendor/bundle/gems/rake-12.3.3/doc/example/b.c +6 -0
  678. data/vendor/bundle/gems/rake-12.3.3/doc/example/main.c +11 -0
  679. data/vendor/bundle/gems/rake-12.3.3/doc/glossary.rdoc +42 -0
  680. data/vendor/bundle/gems/rake-12.3.3/doc/jamis.rb +592 -0
  681. data/vendor/bundle/gems/rake-12.3.3/doc/proto_rake.rdoc +127 -0
  682. data/vendor/bundle/gems/rake-12.3.3/doc/rake.1 +156 -0
  683. data/vendor/bundle/gems/rake-12.3.3/doc/rakefile.rdoc +622 -0
  684. data/vendor/bundle/gems/rake-12.3.3/doc/rational.rdoc +151 -0
  685. data/vendor/bundle/gems/rake-12.3.3/exe/rake +27 -0
  686. data/vendor/bundle/gems/rake-12.3.3/lib/rake.rb +71 -0
  687. data/vendor/bundle/gems/rake-12.3.3/lib/rake/application.rb +824 -0
  688. data/vendor/bundle/gems/rake-12.3.3/lib/rake/backtrace.rb +24 -0
  689. data/vendor/bundle/gems/rake-12.3.3/lib/rake/clean.rb +78 -0
  690. data/vendor/bundle/gems/rake-12.3.3/lib/rake/cloneable.rb +17 -0
  691. data/vendor/bundle/gems/rake-12.3.3/lib/rake/cpu_counter.rb +107 -0
  692. data/vendor/bundle/gems/rake-12.3.3/lib/rake/default_loader.rb +15 -0
  693. data/vendor/bundle/gems/rake-12.3.3/lib/rake/dsl_definition.rb +195 -0
  694. data/vendor/bundle/gems/rake-12.3.3/lib/rake/early_time.rb +22 -0
  695. data/vendor/bundle/gems/rake-12.3.3/lib/rake/ext/core.rb +26 -0
  696. data/vendor/bundle/gems/rake-12.3.3/lib/rake/ext/string.rb +176 -0
  697. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_creation_task.rb +25 -0
  698. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_list.rb +435 -0
  699. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_task.rb +54 -0
  700. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_utils.rb +137 -0
  701. data/vendor/bundle/gems/rake-12.3.3/lib/rake/file_utils_ext.rb +145 -0
  702. data/vendor/bundle/gems/rake-12.3.3/lib/rake/invocation_chain.rb +57 -0
  703. data/vendor/bundle/gems/rake-12.3.3/lib/rake/invocation_exception_mixin.rb +17 -0
  704. data/vendor/bundle/gems/rake-12.3.3/lib/rake/late_time.rb +18 -0
  705. data/vendor/bundle/gems/rake-12.3.3/lib/rake/linked_list.rb +112 -0
  706. data/vendor/bundle/gems/rake-12.3.3/lib/rake/loaders/makefile.rb +54 -0
  707. data/vendor/bundle/gems/rake-12.3.3/lib/rake/multi_task.rb +14 -0
  708. data/vendor/bundle/gems/rake-12.3.3/lib/rake/name_space.rb +38 -0
  709. data/vendor/bundle/gems/rake-12.3.3/lib/rake/packagetask.rb +207 -0
  710. data/vendor/bundle/gems/rake-12.3.3/lib/rake/phony.rb +16 -0
  711. data/vendor/bundle/gems/rake-12.3.3/lib/rake/private_reader.rb +21 -0
  712. data/vendor/bundle/gems/rake-12.3.3/lib/rake/promise.rb +100 -0
  713. data/vendor/bundle/gems/rake-12.3.3/lib/rake/pseudo_status.rb +30 -0
  714. data/vendor/bundle/gems/rake-12.3.3/lib/rake/rake_module.rb +67 -0
  715. data/vendor/bundle/gems/rake-12.3.3/lib/rake/rake_test_loader.rb +27 -0
  716. data/vendor/bundle/gems/rake-12.3.3/lib/rake/rule_recursion_overflow_error.rb +20 -0
  717. data/vendor/bundle/gems/rake-12.3.3/lib/rake/scope.rb +43 -0
  718. data/vendor/bundle/gems/rake-12.3.3/lib/rake/task.rb +413 -0
  719. data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_argument_error.rb +8 -0
  720. data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_arguments.rb +109 -0
  721. data/vendor/bundle/gems/rake-12.3.3/lib/rake/task_manager.rb +324 -0
  722. data/vendor/bundle/gems/rake-12.3.3/lib/rake/tasklib.rb +12 -0
  723. data/vendor/bundle/gems/rake-12.3.3/lib/rake/testtask.rb +224 -0
  724. data/vendor/bundle/gems/rake-12.3.3/lib/rake/thread_history_display.rb +49 -0
  725. data/vendor/bundle/gems/rake-12.3.3/lib/rake/thread_pool.rb +163 -0
  726. data/vendor/bundle/gems/rake-12.3.3/lib/rake/trace_output.rb +23 -0
  727. data/vendor/bundle/gems/rake-12.3.3/lib/rake/version.rb +10 -0
  728. data/vendor/bundle/gems/rake-12.3.3/lib/rake/win32.rb +51 -0
  729. data/vendor/bundle/gems/rake-12.3.3/rake.gemspec +42 -0
  730. data/vendor/bundle/gems/rspec-3.9.0/LICENSE.md +27 -0
  731. data/vendor/bundle/gems/rspec-3.9.0/README.md +43 -0
  732. data/vendor/bundle/gems/rspec-3.9.0/lib/rspec.rb +3 -0
  733. data/vendor/bundle/gems/rspec-3.9.0/lib/rspec/version.rb +5 -0
  734. data/vendor/bundle/gems/rspec-core-3.9.1/.document +5 -0
  735. data/vendor/bundle/gems/rspec-core-3.9.1/.yardopts +8 -0
  736. data/vendor/bundle/gems/rspec-core-3.9.1/Changelog.md +2274 -0
  737. data/vendor/bundle/gems/rspec-core-3.9.1/LICENSE.md +26 -0
  738. data/vendor/bundle/gems/rspec-core-3.9.1/README.md +384 -0
  739. data/vendor/bundle/gems/rspec-core-3.9.1/exe/rspec +4 -0
  740. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/autorun.rb +3 -0
  741. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core.rb +186 -0
  742. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/backtrace_formatter.rb +65 -0
  743. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/coordinator.rb +62 -0
  744. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/example_minimizer.rb +173 -0
  745. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/fork_runner.rb +135 -0
  746. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/server.rb +61 -0
  747. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_command.rb +126 -0
  748. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/shell_runner.rb +73 -0
  749. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/bisect/utilities.rb +58 -0
  750. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/configuration.rb +2336 -0
  751. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/configuration_options.rb +233 -0
  752. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/did_you_mean.rb +46 -0
  753. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/drb.rb +113 -0
  754. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/dsl.rb +98 -0
  755. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example.rb +656 -0
  756. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example_group.rb +889 -0
  757. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/example_status_persister.rb +235 -0
  758. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/filter_manager.rb +231 -0
  759. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/flat_map.rb +20 -0
  760. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters.rb +272 -0
  761. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_bisect_formatter.rb +45 -0
  762. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_formatter.rb +70 -0
  763. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/base_text_formatter.rb +75 -0
  764. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_drb_formatter.rb +29 -0
  765. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/bisect_progress_formatter.rb +157 -0
  766. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/console_codes.rb +68 -0
  767. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/deprecation_formatter.rb +223 -0
  768. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/documentation_formatter.rb +102 -0
  769. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/exception_presenter.rb +508 -0
  770. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/failure_list_formatter.rb +23 -0
  771. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/fallback_message_formatter.rb +28 -0
  772. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/helpers.rb +110 -0
  773. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_formatter.rb +153 -0
  774. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_printer.rb +414 -0
  775. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/html_snippet_extractor.rb +120 -0
  776. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/json_formatter.rb +102 -0
  777. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/profile_formatter.rb +68 -0
  778. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/progress_formatter.rb +29 -0
  779. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/protocol.rb +182 -0
  780. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/snippet_extractor.rb +134 -0
  781. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/formatters/syntax_highlighter.rb +91 -0
  782. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/hooks.rb +632 -0
  783. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/invocations.rb +87 -0
  784. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/memoized_helpers.rb +554 -0
  785. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/metadata.rb +498 -0
  786. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/metadata_filter.rb +255 -0
  787. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/minitest_assertions_adapter.rb +31 -0
  788. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/flexmock.rb +31 -0
  789. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/mocha.rb +57 -0
  790. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/null.rb +14 -0
  791. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rr.rb +31 -0
  792. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/mocking_adapters/rspec.rb +32 -0
  793. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/notifications.rb +521 -0
  794. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/option_parser.rb +316 -0
  795. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/ordering.rb +158 -0
  796. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/output_wrapper.rb +29 -0
  797. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/pending.rb +165 -0
  798. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/profiler.rb +34 -0
  799. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer.rb +48 -0
  800. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/.rspec +1 -0
  801. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/spec/spec_helper.rb +100 -0
  802. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/rake_task.rb +188 -0
  803. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/reporter.rb +265 -0
  804. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/ruby_project.rb +53 -0
  805. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/runner.rb +204 -0
  806. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/sandbox.rb +37 -0
  807. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/set.rb +54 -0
  808. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shared_context.rb +55 -0
  809. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shared_example_group.rb +269 -0
  810. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/shell_escape.rb +49 -0
  811. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/test_unit_assertions_adapter.rb +30 -0
  812. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/version.rb +9 -0
  813. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/warnings.rb +40 -0
  814. data/vendor/bundle/gems/rspec-core-3.9.1/lib/rspec/core/world.rb +275 -0
  815. data/vendor/bundle/gems/rspec-expectations-3.9.0/.document +5 -0
  816. data/vendor/bundle/gems/rspec-expectations-3.9.0/.yardopts +6 -0
  817. data/vendor/bundle/gems/rspec-expectations-3.9.0/Changelog.md +1170 -0
  818. data/vendor/bundle/gems/rspec-expectations-3.9.0/LICENSE.md +25 -0
  819. data/vendor/bundle/gems/rspec-expectations-3.9.0/README.md +320 -0
  820. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations.rb +82 -0
  821. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/block_snippet_extractor.rb +253 -0
  822. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/configuration.rb +215 -0
  823. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/expectation_target.rb +127 -0
  824. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/fail_with.rb +39 -0
  825. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/failure_aggregator.rb +194 -0
  826. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/handler.rb +170 -0
  827. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/minitest_integration.rb +58 -0
  828. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/syntax.rb +132 -0
  829. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/expectations/version.rb +8 -0
  830. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers.rb +1038 -0
  831. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/aliased_matcher.rb +116 -0
  832. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in.rb +52 -0
  833. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/all.rb +86 -0
  834. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/base_matcher.rb +193 -0
  835. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be.rb +288 -0
  836. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_between.rb +77 -0
  837. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_instance_of.rb +26 -0
  838. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_kind_of.rb +20 -0
  839. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
  840. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/change.rb +428 -0
  841. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/compound.rb +276 -0
  842. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/contain_exactly.rb +302 -0
  843. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/cover.rb +24 -0
  844. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eq.rb +40 -0
  845. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/eql.rb +34 -0
  846. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/equal.rb +81 -0
  847. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/exist.rb +90 -0
  848. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/has.rb +103 -0
  849. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/have_attributes.rb +114 -0
  850. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/include.rb +149 -0
  851. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/match.rb +106 -0
  852. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/operators.rb +128 -0
  853. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/output.rb +200 -0
  854. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/raise_error.rb +230 -0
  855. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/respond_to.rb +174 -0
  856. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/satisfy.rb +60 -0
  857. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/start_or_end_with.rb +94 -0
  858. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/throw_symbol.rb +132 -0
  859. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/built_in/yield.rb +432 -0
  860. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/composable.rb +171 -0
  861. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/dsl.rb +534 -0
  862. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/english_phrasing.rb +58 -0
  863. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +82 -0
  864. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/fail_matchers.rb +42 -0
  865. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/generated_descriptions.rb +41 -0
  866. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_delegator.rb +35 -0
  867. data/vendor/bundle/gems/rspec-expectations-3.9.0/lib/rspec/matchers/matcher_protocol.rb +99 -0
  868. data/vendor/bundle/gems/rspec-mocks-3.9.1/.document +5 -0
  869. data/vendor/bundle/gems/rspec-mocks-3.9.1/.yardopts +6 -0
  870. data/vendor/bundle/gems/rspec-mocks-3.9.1/Changelog.md +1133 -0
  871. data/vendor/bundle/gems/rspec-mocks-3.9.1/LICENSE.md +25 -0
  872. data/vendor/bundle/gems/rspec-mocks-3.9.1/README.md +463 -0
  873. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +130 -0
  874. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance.rb +11 -0
  875. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/chain.rb +111 -0
  876. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/error_generator.rb +31 -0
  877. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expect_chain_chain.rb +31 -0
  878. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/expectation_chain.rb +50 -0
  879. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/message_chains.rb +83 -0
  880. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/proxy.rb +116 -0
  881. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +294 -0
  882. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain.rb +51 -0
  883. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/stub_chain_chain.rb +23 -0
  884. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb +100 -0
  885. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_matchers.rb +322 -0
  886. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/configuration.rb +212 -0
  887. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/error_generator.rb +369 -0
  888. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/example_methods.rb +434 -0
  889. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/instance_method_stasher.rb +146 -0
  890. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/marshal_extension.rb +41 -0
  891. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/expectation_customization.rb +20 -0
  892. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/have_received.rb +134 -0
  893. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb +132 -0
  894. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
  895. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_messages.rb +77 -0
  896. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_chain.rb +87 -0
  897. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +751 -0
  898. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +287 -0
  899. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_reference.rb +202 -0
  900. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/minitest_integration.rb +68 -0
  901. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +339 -0
  902. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/object_reference.rb +149 -0
  903. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/order_group.rb +81 -0
  904. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +503 -0
  905. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/space.rb +238 -0
  906. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/standalone.rb +3 -0
  907. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/syntax.rb +325 -0
  908. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/targets.rb +124 -0
  909. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/test_double.rb +171 -0
  910. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb +129 -0
  911. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_message_expectation.rb +54 -0
  912. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_proxy.rb +220 -0
  913. data/vendor/bundle/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +9 -0
  914. data/vendor/bundle/gems/rspec-support-3.9.2/Changelog.md +292 -0
  915. data/vendor/bundle/gems/rspec-support-3.9.2/LICENSE.md +23 -0
  916. data/vendor/bundle/gems/rspec-support-3.9.2/README.md +40 -0
  917. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support.rb +149 -0
  918. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/caller_filter.rb +83 -0
  919. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/comparable_version.rb +46 -0
  920. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/differ.rb +215 -0
  921. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/directory_maker.rb +63 -0
  922. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/encoded_string.rb +161 -0
  923. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/fuzzy_matcher.rb +48 -0
  924. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/hunk_generator.rb +47 -0
  925. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/matcher_definition.rb +42 -0
  926. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/method_signature_verifier.rb +438 -0
  927. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/mutex.rb +73 -0
  928. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/object_formatter.rb +275 -0
  929. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/recursive_const_methods.rb +76 -0
  930. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/reentrant_mutex.rb +53 -0
  931. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/ruby_features.rb +185 -0
  932. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source.rb +75 -0
  933. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/location.rb +21 -0
  934. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/node.rb +110 -0
  935. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/source/token.rb +87 -0
  936. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec.rb +81 -0
  937. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/deprecation_helpers.rb +64 -0
  938. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/formatting_support.rb +9 -0
  939. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/in_sub_process.rb +69 -0
  940. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/library_wide_checks.rb +150 -0
  941. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/shell_out.rb +89 -0
  942. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/stderr_splitter.rb +67 -0
  943. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/string_matcher.rb +46 -0
  944. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_directory.rb +13 -0
  945. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/spec/with_isolated_stderr.rb +13 -0
  946. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/version.rb +7 -0
  947. data/vendor/bundle/gems/rspec-support-3.9.2/lib/rspec/support/warnings.rb +39 -0
  948. data/vendor/bundle/gems/unf-0.1.4/.gitignore +17 -0
  949. data/vendor/bundle/gems/unf-0.1.4/.travis.yml +17 -0
  950. data/vendor/bundle/gems/unf-0.1.4/CHANGELOG.md +46 -0
  951. data/vendor/bundle/gems/unf-0.1.4/Gemfile +4 -0
  952. data/vendor/bundle/gems/unf-0.1.4/LICENSE +24 -0
  953. data/vendor/bundle/gems/unf-0.1.4/README.md +39 -0
  954. data/vendor/bundle/gems/unf-0.1.4/Rakefile +21 -0
  955. data/vendor/bundle/gems/unf-0.1.4/lib/unf.rb +38 -0
  956. data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer.rb +35 -0
  957. data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer_cruby.rb +1 -0
  958. data/vendor/bundle/gems/unf-0.1.4/lib/unf/normalizer_jruby.rb +30 -0
  959. data/vendor/bundle/gems/unf-0.1.4/lib/unf/version.rb +3 -0
  960. data/vendor/bundle/gems/unf-0.1.4/test/helper.rb +18 -0
  961. data/vendor/bundle/gems/unf-0.1.4/test/normalization-test.txt +108816 -0
  962. data/vendor/bundle/gems/unf-0.1.4/test/test_unf.rb +41 -0
  963. data/vendor/bundle/gems/unf-0.1.4/unf.gemspec +35 -0
  964. data/vendor/bundle/gems/unf_ext-0.0.7.6/.document +5 -0
  965. data/vendor/bundle/gems/unf_ext-0.0.7.6/.gitignore +19 -0
  966. data/vendor/bundle/gems/unf_ext-0.0.7.6/.travis.yml +24 -0
  967. data/vendor/bundle/gems/unf_ext-0.0.7.6/CHANGELOG.md +42 -0
  968. data/vendor/bundle/gems/unf_ext-0.0.7.6/Gemfile +4 -0
  969. data/vendor/bundle/gems/unf_ext-0.0.7.6/LICENSE.txt +22 -0
  970. data/vendor/bundle/gems/unf_ext-0.0.7.6/README.md +57 -0
  971. data/vendor/bundle/gems/unf_ext-0.0.7.6/Rakefile +31 -0
  972. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/.sitearchdir.time +0 -0
  973. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/extconf.rb +50 -0
  974. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf.cc +75 -0
  975. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf.o +0 -0
  976. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/normalizer.hh +139 -0
  977. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/table.hh +13617 -0
  978. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/char_stream.hh +150 -0
  979. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/node.hh +25 -0
  980. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/trie/searcher.hh +194 -0
  981. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf/util.hh +24 -0
  982. data/vendor/bundle/gems/unf_ext-0.0.7.6/ext/unf_ext/unf_ext.bundle +0 -0
  983. data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext.bundle +0 -0
  984. data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext.rb +5 -0
  985. data/vendor/bundle/gems/unf_ext-0.0.7.6/lib/unf_ext/version.rb +5 -0
  986. data/vendor/bundle/gems/unf_ext-0.0.7.6/test/helper.rb +18 -0
  987. data/vendor/bundle/gems/unf_ext-0.0.7.6/test/normalization-test.txt +112332 -0
  988. data/vendor/bundle/gems/unf_ext-0.0.7.6/test/test_unf_ext.rb +41 -0
  989. data/vendor/bundle/gems/unf_ext-0.0.7.6/unf_ext.gemspec +42 -0
  990. data/vendor/bundle/gems/webrobots-0.1.2/.document +4 -0
  991. data/vendor/bundle/gems/webrobots-0.1.2/.gitignore +11 -0
  992. data/vendor/bundle/gems/webrobots-0.1.2/.travis.yml +17 -0
  993. data/vendor/bundle/gems/webrobots-0.1.2/Gemfile +4 -0
  994. data/vendor/bundle/gems/webrobots-0.1.2/LICENSE.txt +24 -0
  995. data/vendor/bundle/gems/webrobots-0.1.2/README.rdoc +38 -0
  996. data/vendor/bundle/gems/webrobots-0.1.2/Rakefile +29 -0
  997. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots.rb +213 -0
  998. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/nokogiri.rb +32 -0
  999. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/robotstxt.rb +752 -0
  1000. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/robotstxt.ry +487 -0
  1001. data/vendor/bundle/gems/webrobots-0.1.2/lib/webrobots/version.rb +3 -0
  1002. data/vendor/bundle/gems/webrobots-0.1.2/test/helper.rb +25 -0
  1003. data/vendor/bundle/gems/webrobots-0.1.2/test/simplecov_start.rb +9 -0
  1004. data/vendor/bundle/gems/webrobots-0.1.2/test/test_webrobots.rb +806 -0
  1005. data/vendor/bundle/gems/webrobots-0.1.2/test/vcr_cassettes/major_sites.yml +2006 -0
  1006. data/vendor/bundle/gems/webrobots-0.1.2/webrobots.gemspec +46 -0
  1007. data/vendor/bundle/specifications/connection_pool-2.2.2.gemspec +38 -0
  1008. data/vendor/bundle/specifications/diff-lcs-1.3.gemspec +61 -0
  1009. data/vendor/bundle/specifications/domain_name-0.5.20190701.gemspec +46 -0
  1010. data/vendor/bundle/specifications/http-cookie-1.0.3.gemspec +52 -0
  1011. data/vendor/bundle/specifications/mechanize-2.7.6.gemspec +69 -0
  1012. data/vendor/bundle/specifications/mime-types-3.3.1.gemspec +85 -0
  1013. data/vendor/bundle/specifications/mime-types-data-3.2019.1009.gemspec +60 -0
  1014. data/vendor/bundle/specifications/mini_portile2-2.4.0.gemspec +48 -0
  1015. data/vendor/bundle/specifications/net-http-digest_auth-1.4.1.gemspec +43 -0
  1016. data/vendor/bundle/specifications/net-http-persistent-3.1.0.gemspec +52 -0
  1017. data/vendor/bundle/specifications/nokogiri-1.10.7.gemspec +85 -0
  1018. data/vendor/bundle/specifications/ntlm-http-0.1.1.gemspec +24 -0
  1019. data/vendor/bundle/specifications/rake-12.3.3.gemspec +49 -0
  1020. data/vendor/bundle/specifications/rspec-3.9.0.gemspec +43 -0
  1021. data/vendor/bundle/specifications/rspec-core-3.9.1.gemspec +63 -0
  1022. data/vendor/bundle/specifications/rspec-expectations-3.9.0.gemspec +51 -0
  1023. data/vendor/bundle/specifications/rspec-mocks-3.9.1.gemspec +51 -0
  1024. data/vendor/bundle/specifications/rspec-support-3.9.2.gemspec +39 -0
  1025. data/vendor/bundle/specifications/unf-0.1.4.gemspec +46 -0
  1026. data/vendor/bundle/specifications/unf_ext-0.0.7.6.gemspec +51 -0
  1027. data/vendor/bundle/specifications/webrobots-0.1.2.gemspec +65 -0
  1028. metadata +1100 -0
@@ -0,0 +1,2215 @@
1
+ rfc^rfc6015|template^application/1d-interleaved-parityfec
2
+ person^Ozgur_Oyman^_3GPP|template^application/3gpdash-qoe-report+xml
3
+ person^John_M_Meredith|template^application/3gpp-ims+xml
4
+ person^ASAM^Thomas_Thomsen|template^application/A2L
5
+ -
6
+ -
7
+ person^Ehud_Shapiro|template^application/activemessage
8
+ person^Benjamin_Goering^W3C|template^application/activity+json
9
+ rfc^rfc7285|template^application/alto-costmap+json
10
+ rfc^rfc7285|template^application/alto-costmapfilter+json
11
+ rfc^rfc7285|template^application/alto-directory+json
12
+ rfc^rfc7285|template^application/alto-endpointcost+json
13
+ rfc^rfc7285|template^application/alto-endpointcostparams+json
14
+ rfc^rfc7285|template^application/alto-endpointprop+json
15
+ rfc^rfc7285|template^application/alto-endpointpropparams+json
16
+ rfc^rfc7285|template^application/alto-error+json
17
+ rfc^rfc7285|template^application/alto-networkmap+json
18
+ rfc^rfc7285|template^application/alto-networkmapfilter+json
19
+ person^ASAM^Thomas_Thomsen|template^application/AML
20
+ person^Nathaniel_Borenstein|template^application/andrew-inset
21
+ -
22
+ person^Patrik_Faltstrom|template^application/applefile
23
+ -
24
+ person^ASAM^Thomas_Thomsen|template^application/ATF
25
+ person^ASAM^Thomas_Thomsen|template^application/ATFX
26
+ rfc^rfc4287^rfc5023|template^application/atom+xml
27
+ rfc^rfc5023|template^application/atomcat+xml
28
+ rfc^rfc6721|template^application/atomdeleted+xml
29
+ person^Nathaniel_Borenstein|template^application/atomicmail
30
+ rfc^rfc5023|template^application/atomsvc+xml
31
+ person^ATSC|template^application/atsc-dwd+xml
32
+ person^ATSC|template^application/atsc-held+xml
33
+ person^ATSC|template^application/atsc-rsat+xml
34
+ person^ASAM^Thomas_Thomsen|template^application/ATXML
35
+ rfc^rfc4745|template^application/auth-policy+xml
36
+ person^ASHRAE^Dave_Robin|template^application/bacnet-xdd+zip
37
+ rfc^rfc2442|template^application/batch-SMTP
38
+ rfc^rfc3080|template^application/beep+xml
39
+ -
40
+ rfc^rfc7265|template^application/calendar+json
41
+ rfc^rfc6321|template^application/calendar+xml
42
+ rfc^rfc6910|template^application/call-completion
43
+ rfc^rfc1895|template^application/CALS-1840
44
+ -
45
+ rfc^rfc7049|template^application/cbor
46
+ person^_3GPP|template^application/cccex
47
+ rfc^rfc6503|template^application/ccmp+xml
48
+ rfc^rfc4267|template^application/ccxml+xml
49
+ person^ASAM^Thomas_Thomsen|template^application/CDFX+XML
50
+ rfc^rfc6208|template^application/cdmi-capability
51
+ rfc^rfc6208|template^application/cdmi-container
52
+ rfc^rfc6208|template^application/cdmi-domain
53
+ rfc^rfc6208|template^application/cdmi-object
54
+ rfc^rfc6208|template^application/cdmi-queue
55
+ rfc^rfc7736|template^application/cdni
56
+ person^ASAM^Thomas_Thomsen|template^application/CEA
57
+ person^Gottfried_Zimmermann|template^application/cea-2018+xml
58
+ rfc^rfc4708|template^application/cellml+xml
59
+ rfc^rfc6230|template^application/cfw
60
+ -
61
+ draft^RFC-ietf-clue-data-model-schema-17|template^application/clue_info+xml
62
+ rfc^rfc7193|template^application/cms
63
+ rfc^rfc3367|template^application/cnrp+xml
64
+ rfc^rfc7390|template^application/coap-group+json
65
+ rfc^rfc8075|template^application/coap-payload
66
+ person^David_Glazer|template^application/commonground
67
+ rfc^rfc4575|template^application/conference-info+xml
68
+ rfc^rfc8152|template^application/cose
69
+ rfc^rfc8152|template^application/cose-key
70
+ rfc^rfc8152|template^application/cose-key-set
71
+ rfc^rfc3880|template^application/cpl+xml
72
+ rfc^rfc7030|template^application/csrattrs
73
+ person^Ecma_International_Helpdesk|template^application/csta+xml
74
+ person^Ecma_International_Helpdesk|template^application/CSTAdata+xml
75
+ person^Ivan_Herman^W3C|template^application/csvm+json
76
+ -
77
+ rfc^rfc8392|template^application/cwt
78
+ person^Donald_E._Eastlake_3rd|template^application/cybercash
79
+ person^ISO-IEC_JTC1^Thomas_Stockhammer|template^application/dash+xml
80
+ person^David_Furbeck|template^application/dashdelta
81
+ rfc^rfc4709|template^application/davmount+xml
82
+ person^Larry_Campbell|template^application/dca-rft
83
+ person^ASAM^Thomas_Thomsen|template^application/DCD
84
+ person^Larry_Campbell|template^application/dec-dx
85
+ rfc^rfc4235|template^application/dialog-info+xml
86
+ rfc^rfc3240|template^application/dicom
87
+ person^DICOM_Standards_Committee^David_Clunie^James_F_Philbin|template^application/dicom+json
88
+ person^DICOM_Standards_Committee^David_Clunie^James_F_Philbin|template^application/dicom+xml
89
+ person^ASAM^Thomas_Thomsen|template^application/DII
90
+ person^ASAM^Thomas_Thomsen|template^application/DIT
91
+ rfc^rfc4027|template^application/dns
92
+ rfc^rfc8427|template^application/dns+json
93
+ rfc^rfc8484|template^application/dns-message
94
+ -
95
+ -
96
+ rfc^rfc6063|template^application/dskpp+xml
97
+ rfc^rfc5698|template^application/dssc+der
98
+ rfc^rfc5698|template^application/dssc+xml
99
+ rfc^rfc3029|template^application/dvcs
100
+ -
101
+ rfc^rfc4329|template^application/ecmascript
102
+ rfc^rfc1767|template^application/EDI-consent
103
+ rfc^rfc1767|template^application/EDI-X12
104
+ rfc^rfc1767|template^application/EDIFACT
105
+ person^Samer_El-Haj-Mahmoud^UEFI_Forum|template^application/efi
106
+ rfc^rfc7852|template^application/EmergencyCallData.Comment+xml
107
+ rfc^rfc8147|template^application/EmergencyCallData.Control+xml
108
+ rfc^rfc7852|template^application/EmergencyCallData.DeviceInfo+xml
109
+ rfc^rfc8147|template^application/EmergencyCallData.eCall.MSD
110
+ rfc^rfc7852|template^application/EmergencyCallData.ProviderInfo+xml
111
+ rfc^rfc7852|template^application/EmergencyCallData.ServiceInfo+xml
112
+ rfc^rfc7852|template^application/EmergencyCallData.SubscriberInfo+xml
113
+ rfc^rfc8148|template^application/EmergencyCallData.VEDS+xml
114
+ person^ISO-IEC_JTC1^W3C|uri^http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration
115
+ person^Kazuyuki_Ashimura^W3C|template^application/emotionml+xml
116
+ rfc^rfc6849|template^application/encaprtp
117
+ rfc^rfc5730|template^application/epp+xml
118
+ person^International_Digital_Publishing_Forum^William_McCoy|template^application/epub+zip
119
+ person^Steve_Katz|template^application/eshop
120
+ rfc^rfc4735|template^application/example
121
+ -
122
+ person^W3C|uri^http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration
123
+ draft^RFC-ietf-httpbis-expect-ct-08|template^application/expect-ct-report+json
124
+ person^ITU-T_ASN.1_Rapporteur|template^application/fastinfoset
125
+ person^ITU-T_ASN.1_Rapporteur|template^application/fastsoap
126
+ rfc^rfc6726|template^application/fdt+xml
127
+ person^Grahame_Grieve^HL7|template^application/fhir+json
128
+ person^Grahame_Grieve^HL7|template^application/fhir+xml
129
+ rfc^rfc4047|template^application/fits
130
+ rfc^rfc8627|template^application/flexfec
131
+ notes^- DEPRECATED in favor of font/sfnt|person^ISO-IEC_JTC1^Levantovsky|rfc^rfc8081|template^application/font-sfnt
132
+ rfc^rfc3073|template^application/font-tdpfr
133
+ notes^- DEPRECATED in favor of font/woff|person^W3C|rfc^rfc8081|template^application/font-woff
134
+ -
135
+ rfc^rfc6230|template^application/framework-attributes+xml
136
+ -
137
+ rfc^rfc7946|template^application/geo+json
138
+ rfc^rfc8142|template^application/geo+json-seq
139
+ person^OGC^Scott_Simmons|template^application/geopackage+sqlite3
140
+ person^OGC^Scott_Simmons|template^application/geoxacml+xml
141
+ -
142
+ person^Khronos^Saurabh_Bhatia|template^application/gltf-buffer
143
+ person^Clemens_Portele^OGC|template^application/gml+xml
144
+ -
145
+ -
146
+ rfc^rfc6713|template^application/gzip
147
+ rfc^rfc4573|template^application/H224
148
+ rfc^rfc5985|template^application/held+xml
149
+ -
150
+ rfc^rfc7230|template^application/http
151
+ person^Michael_Domino|template^application/hyperstudio
152
+ -
153
+ rfc^rfc5408|template^application/ibe-key-request+xml
154
+ rfc^rfc5408|template^application/ibe-pkg-reply+xml
155
+ rfc^rfc5408|template^application/ibe-pp-data
156
+ person^Curtis_Parks|template^application/iges
157
+ rfc^rfc3994|template^application/im-iscomposing+xml
158
+ -
159
+ rfc^rfc2652|template^application/index
160
+ rfc^rfc2652|template^application/index.cmd
161
+ rfc^rfc2652|template^application/index.obj
162
+ rfc^rfc2652|template^application/index.response
163
+ rfc^rfc2652|template^application/index.vnd
164
+ person^Kazuyuki_Ashimura|template^application/inkml+xml
165
+ rfc^rfc2935|template^application/IOTP
166
+ rfc^rfc5655|template^application/ipfix
167
+ rfc^rfc8010|template^application/ipp
168
+ rfc^rfc3204|template^application/isup
169
+ person^ITS-IG-W3C^W3C|template^application/its+xml
170
+ -
171
+ -
172
+ -
173
+ rfc^rfc4329|template^application/javascript
174
+ person^Ivan_Herman^W3C|template^application/jf2feed+json
175
+ rfc^rfc7515|template^application/jose
176
+ rfc^rfc7515|template^application/jose+json
177
+ rfc^rfc7033|template^application/jrd+json
178
+ rfc^rfc8259|template^application/json
179
+ rfc^rfc6902|template^application/json-patch+json
180
+ rfc^rfc7464|template^application/json-seq
181
+ -
182
+ rfc^rfc7517|template^application/jwk+json
183
+ rfc^rfc7517|template^application/jwk-set+json
184
+ rfc^rfc7519|template^application/jwt
185
+ rfc^rfc4730|template^application/kpml-request+xml
186
+ rfc^rfc4730|template^application/kpml-response+xml
187
+ person^Ivan_Herman^W3C|template^application/ld+json
188
+ rfc^rfc7940|template^application/lgr+xml
189
+ rfc^rfc6690|template^application/link-format
190
+ rfc^rfc7200|template^application/load-control+xml
191
+ rfc^rfc5222|template^application/lost+xml
192
+ rfc^rfc6739|template^application/lostsync+xml
193
+ -
194
+ person^ASAM^Thomas_Thomsen|template^application/LXF
195
+ person^Patrik_Faltstrom|template^application/mac-binhex40
196
+ -
197
+ -
198
+ person^Paul_Lindner|template^application/macwriteii
199
+ rfc^rfc6207|template^application/mads+xml
200
+ rfc^rfc2220|template^application/marc
201
+ rfc^rfc6207|template^application/marcxml+xml
202
+ -
203
+ person^Wolfram|template^application/mathematica
204
+ -
205
+ person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html
206
+ person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html
207
+ person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html
208
+ person^_3GPP|template^application/mbms-associated-procedure-description+xml
209
+ person^_3GPP|template^application/mbms-deregister+xml
210
+ person^_3GPP|template^application/mbms-envelope+xml
211
+ person^_3GPP|template^application/mbms-msk+xml
212
+ person^_3GPP|template^application/mbms-msk-response+xml
213
+ person^_3GPP|template^application/mbms-protection-description+xml
214
+ person^_3GPP|template^application/mbms-reception-report+xml
215
+ person^_3GPP|template^application/mbms-register+xml
216
+ person^_3GPP|template^application/mbms-register-response+xml
217
+ person^Eric_Turcotte^_3GPP|template^application/mbms-schedule+xml
218
+ person^_3GPP|template^application/mbms-user-service-description+xml
219
+ rfc^rfc4155|template^application/mbox
220
+ rfc^rfc6796|template^application/media-policy-dataset+xml
221
+ rfc^rfc5168|template^application/media_control+xml
222
+ rfc^rfc5022|template^application/mediaservercontrol+xml
223
+ rfc^rfc7396|template^application/merge-patch+json
224
+ -
225
+ rfc^rfc5854|template^application/metalink4+xml
226
+ rfc^rfc6207|template^application/mets+xml
227
+ person^ASAM^Thomas_Thomsen|template^application/MF4
228
+ rfc^rfc3830|template^application/mikey
229
+ person^Bryan_Blank^NCGIS|template^application/mipc
230
+ person^ATSC|template^application/mmt-aei+xml
231
+ person^ATSC|template^application/mmt-usd+xml
232
+ rfc^rfc6207|template^application/mods+xml
233
+ rfc^rfc1848|template^application/moss-keys
234
+ rfc^rfc1848|template^application/moss-signature
235
+ rfc^rfc1848|template^application/mosskey-data
236
+ rfc^rfc1848|template^application/mosskey-request
237
+ person^David_Singer|rfc^rfc6381|template^application/mp21
238
+ rfc^rfc4337^rfc6381|template^application/mp4
239
+ rfc^rfc3640|template^application/mpeg4-generic
240
+ rfc^rfc4337|template^application/mpeg4-iod
241
+ rfc^rfc4337|template^application/mpeg4-iod-xmt
242
+ rfc^rfc6917|template^application/mrb-consumer+xml
243
+ rfc^rfc6917|template^application/mrb-publish+xml
244
+ rfc^rfc6231|template^application/msc-ivr+xml
245
+ rfc^rfc6505|template^application/msc-mixer+xml
246
+ person^Paul_Lindner|template^application/msword
247
+ rfc^rfc8520|template^application/mud+json
248
+ draft^RFC-ietf-core-multipart-ct-04|template^application/multipart-core
249
+ rfc^rfc4539|template^application/mxf
250
+ person^Eric_Prudhommeaux^W3C|template^application/n-quads
251
+ person^Eric_Prudhommeaux^W3C|template^application/n-triples
252
+ rfc^rfc4707|template^application/nasdata
253
+ -
254
+ rfc^rfc5537|template^application/news-checkgroups
255
+ rfc^rfc5537|template^application/news-groupinfo
256
+ -
257
+ rfc^rfc5537|template^application/news-transmission
258
+ rfc^rfc6787|template^application/nlsml+xml
259
+ person^Node.js_TSC|template^application/node
260
+ person^Michael_Hammer|template^application/nss
261
+ rfc^rfc6960|template^application/ocsp-request
262
+ rfc^rfc6960|template^application/ocsp-response
263
+ rfc^rfc2045^rfc2046|template^application/octet-stream
264
+ rfc^rfc1494|template^application/ODA
265
+ person^CDISC^Sam_Hume|template^application/odm+xml
266
+ person^ASAM^Thomas_Thomsen|template^application/ODX
267
+ rfc^rfc4839|template^application/oebps-package+xml
268
+ rfc^rfc5334^rfc7845|template^application/ogg
269
+ -
270
+ -
271
+ rfc^rfc8613|template^application/oscore
272
+ person^Ecma_International_Helpdesk|template^application/oxps
273
+ rfc^rfc6940|template^application/p2p-overlay+xml
274
+ rfc^rfc5109
275
+ rfc^rfc8225|template^application/passport
276
+ rfc^rfc5261|template^application/patch-ops-error+xml
277
+ rfc^rfc8118|template^application/pdf
278
+ person^ASAM^Thomas_Thomsen|template^application/PDX
279
+ rfc^rfc8555|template^application/pem-certificate-chain
280
+ rfc^rfc3156|template^application/pgp-encrypted
281
+ rfc^rfc3156
282
+ rfc^rfc3156|template^application/pgp-signature
283
+ -
284
+ rfc^rfc3863|template^application/pidf+xml
285
+ rfc^rfc5262|template^application/pidf-diff+xml
286
+ rfc^rfc5967|template^application/pkcs10
287
+ person^IETF|template^application/pkcs12
288
+ rfc^rfc7114^rfc8551|template^application/pkcs7-mime
289
+ rfc^rfc8551|template^application/pkcs7-signature
290
+ rfc^rfc5958|template^application/pkcs8
291
+ rfc^rfc8351|template^application/pkcs8-encrypted
292
+ rfc^rfc5877|template^application/pkix-attr-cert
293
+ rfc^rfc2585|template^application/pkix-cert
294
+ rfc^rfc2585|template^application/pkix-crl
295
+ rfc^rfc6066|template^application/pkix-pkipath
296
+ rfc^rfc2510|template^application/pkixcmp
297
+ rfc^rfc4267|template^application/pls+xml
298
+ rfc^rfc4354|template^application/poc-settings+xml
299
+ rfc^rfc2045^rfc2046|template^application/postscript
300
+ -
301
+ rfc^rfc7846|template^application/ppsp-tracker+json
302
+ -
303
+ rfc^rfc7807|template^application/problem+json
304
+ rfc^rfc7807|template^application/problem+xml
305
+ person^Ivan_Herman^W3C|template^application/provenance+xml
306
+ person^Harald_T._Alvestrand|template^application/prs.alvestrand.titrax-sheet
307
+ person^Khemchart_Rungchavalnont|template^application/prs.cww
308
+ person^Giulio_Zambon|template^application/prs.hpub+zip
309
+ person^Jay_Doggett|template^application/prs.nprend
310
+ person^Bill_Janssen|template^application/prs.plucker
311
+ person^Toby_Inkster|template^application/prs.rdf-xml-crypt
312
+ person^Maik_Stührenberg|template^application/prs.xsf+xml
313
+ rfc^rfc6030|template^application/pskc+xml
314
+ rfc^rfc3204|template^application/QSIG
315
+ -
316
+ rfc^rfc6682|template^application/raptorfec
317
+ rfc^rfc7483|template^application/rdap+json
318
+ rfc^rfc3870|template^application/rdf+xml
319
+ rfc^rfc3680|template^application/reginfo+xml
320
+ template^application/relax-ng-compact-syntax|uri^http://www.jtc1sc34.org/repository/0661.pdf
321
+ person^Marshall_Rose|rfc^rfc1486|template^application/remote-printing
322
+ -
323
+ rfc^rfc7071|template^application/reputon+json
324
+ rfc^rfc4826|template^application/resource-lists+xml
325
+ rfc^rfc5362|template^application/resource-lists-diff+xml
326
+ rfc^rfc7991|template^application/rfc+xml
327
+ person^Nick_Smith|template^application/riscos
328
+ rfc^rfc4662|template^application/rlmi+xml
329
+ rfc^rfc4826|template^application/rls-services+xml
330
+ person^ATSC|template^application/route-apd+xml
331
+ person^ATSC|template^application/route-s-tsid+xml
332
+ person^ATSC|template^application/route-usd+xml
333
+ rfc^rfc6493|template^application/rpki-ghostbusters
334
+ rfc^rfc6481|template^application/rpki-manifest
335
+ rfc^rfc8181|template^application/rpki-publication
336
+ rfc^rfc6481|template^application/rpki-roa
337
+ rfc^rfc6492|template^application/rpki-updown
338
+ -
339
+ -
340
+ person^Paul_Lindner|template^application/rtf
341
+ rfc^rfc6849|template^application/rtploopback
342
+ rfc^rfc4588|template^application/rtx
343
+ person^OASIS_Security_Services_Technical_Committee_SSTC|template^application/samlassertion+xml
344
+ person^OASIS_Security_Services_Technical_Committee_SSTC|template^application/samlmetadata+xml
345
+ rfc^rfc3823|template^application/sbml+xml
346
+ person^Oskar_Jonsson^SIS|template^application/scaip+xml
347
+ rfc^rfc7644|template^application/scim+json
348
+ rfc^rfc5055|template^application/scvp-cv-request
349
+ rfc^rfc5055|template^application/scvp-cv-response
350
+ rfc^rfc5055|template^application/scvp-vp-request
351
+ rfc^rfc5055|template^application/scvp-vp-response
352
+ draft^RFC-ietf-mmusic-rfc4566bis-37|template^application/sdp
353
+ rfc^rfc8417|template^application/secevent+jwt
354
+ rfc^rfc8428|template^application/senml+cbor
355
+ rfc^rfc8428|template^application/senml+json
356
+ rfc^rfc8428|template^application/senml+xml
357
+ rfc^rfc8428|template^application/senml-exi
358
+ rfc^rfc8428|template^application/sensml+cbor
359
+ rfc^rfc8428|template^application/sensml+json
360
+ rfc^rfc8428|template^application/sensml+xml
361
+ rfc^rfc8428|template^application/sensml-exi
362
+ person^Robby_Simpson^ZigBee|template^application/sep+xml
363
+ person^Robby_Simpson^ZigBee|template^application/sep-exi
364
+ person^Frederic_Firmin^_3GPP|template^application/session-info
365
+ -
366
+ person^Brian_Korver|template^application/set-payment
367
+ person^Brian_Korver|template^application/set-payment-initiation
368
+ person^Brian_Korver|template^application/set-registration
369
+ person^Brian_Korver|template^application/set-registration-initiation
370
+ rfc^rfc1874|template^application/sgml
371
+ person^Paul_Grosso|template^application/sgml-open-catalog
372
+ rfc^rfc4194|template^application/shf+xml
373
+ rfc^rfc5228|template^application/sieve
374
+ rfc^rfc4661|template^application/simple-filter+xml
375
+ rfc^rfc3842|template^application/simple-message-summary
376
+ person^_3GPP|template^application/simpleSymbolContainer
377
+ person^Bryan_Blank^NCGIS|template^application/sipc
378
+ -
379
+ person^Terry_Crowley|template^application/slate
380
+ notes^- OBSOLETED in favor of application/smil+xml|rfc^rfc4536|template^application/smil
381
+ rfc^rfc4536|template^application/smil+xml
382
+ rfc^rfc6597|template^application/smpte336m
383
+ person^ITU-T_ASN.1_Rapporteur|template^application/soap+fastinfoset
384
+ rfc^rfc3902|template^application/soap+xml
385
+ -
386
+ person^W3C|uri^http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType
387
+ person^W3C|uri^http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime
388
+ rfc^rfc3910|template^application/spirits-event+xml
389
+ rfc^rfc6922|template^application/sql
390
+ rfc^rfc4267|template^application/srgs
391
+ rfc^rfc4267|template^application/srgs+xml
392
+ rfc^rfc6207|template^application/sru+xml
393
+ -
394
+ rfc^rfc4267|template^application/ssml+xml
395
+ -
396
+ person^Chet_Ensign^OASIS|template^application/stix+json
397
+ person^David_Waltermire^ISO-IEC_JTC1^Ron_Brill|template^application/swid+xml
398
+ rfc^rfc5934|template^application/tamp-apex-update
399
+ rfc^rfc5934|template^application/tamp-apex-update-confirm
400
+ rfc^rfc5934|template^application/tamp-community-update
401
+ rfc^rfc5934|template^application/tamp-community-update-confirm
402
+ rfc^rfc5934|template^application/tamp-error
403
+ rfc^rfc5934|template^application/tamp-sequence-adjust
404
+ rfc^rfc5934|template^application/tamp-sequence-adjust-confirm
405
+ rfc^rfc5934|template^application/tamp-status-query
406
+ rfc^rfc5934|template^application/tamp-status-response
407
+ rfc^rfc5934|template^application/tamp-update
408
+ rfc^rfc5934|template^application/tamp-update-confirm
409
+ person^Chet_Ensign^OASIS|template^application/taxii+json
410
+ rfc^rfc6129|template^application/tei+xml
411
+ person^ETSI^Miguel_Angel_Reina_Ortega|template^application/TETRA_ISI
412
+ rfc^rfc5941|template^application/thraud+xml
413
+ rfc^rfc3161|template^application/timestamp-query
414
+ rfc^rfc3161|template^application/timestamp-reply
415
+ rfc^rfc5955|template^application/timestamped-data
416
+ rfc^rfc8460|template^application/tlsrpt+gzip
417
+ rfc^rfc8460|template^application/tlsrpt+json
418
+ rfc^rfc8226|template^application/tnauthlist
419
+ -
420
+ draft^RFC-ietf-mmusic-trickle-ice-sip-18|template^application/trickle-ice-sdpfrag
421
+ person^W3C^W3C_RDF_Working_Group|template^application/trig
422
+ person^W3C^W3C_Timed_Text_Working_Group|template^application/ttml+xml
423
+ person^Linda_Welsh|template^application/tve-trigger
424
+ rfc^rfc8536|template^application/tzif
425
+ rfc^rfc8536|template^application/tzif-leap
426
+ rfc^rfc5109|template^application/ulpfec
427
+ person^Gottfried_Zimmermann^ISO-IEC_JTC1|template^application/urc-grpsheet+xml
428
+ person^Gottfried_Zimmermann^ISO-IEC_JTC1|template^application/urc-ressheet+xml
429
+ person^Gottfried_Zimmermann^ISO-IEC_JTC1|template^application/urc-targetdesc+xml
430
+ person^Gottfried_Zimmermann|template^application/urc-uisocketdesc+xml
431
+ rfc^rfc7095|template^application/vcard+json
432
+ rfc^rfc6351|template^application/vcard+xml
433
+ -
434
+ rfc^rfc2122|template^application/vemmi
435
+ -
436
+ person^Franz_Ombler|template^application/vnd.1000minds.decision-model+xml
437
+ person^Frederic_Firmin|template^application/vnd.3gpp-prose+xml
438
+ person^Frederic_Firmin|template^application/vnd.3gpp-prose-pc3ch+xml
439
+ person^Frederic_Firmin|template^application/vnd.3gpp-v2x-local-service-information
440
+ person^Frederic_Firmin|template^application/vnd.3gpp.access-transfer-events+xml
441
+ person^John_M_Meredith|template^application/vnd.3gpp.bsf+xml
442
+ person^Frederic_Firmin|template^application/vnd.3gpp.GMOP+xml
443
+ person^Tim_Woodward|template^application/vnd.3gpp.mc-signalling-ear
444
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcdata-affiliation-command+xml
445
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcdata-info+xml
446
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcdata-payload
447
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcdata-service-config+xml
448
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcdata-signalling
449
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcdata-ue-config+xml
450
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcdata-user-profile+xml
451
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-affiliation-command+xml
452
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-floor-request+xml
453
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-info+xml
454
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-location-info+xml
455
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-mbms-usage-info+xml
456
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-service-config+xml
457
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-signed+xml
458
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-ue-config+xml
459
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-ue-init-config+xml
460
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcptt-user-profile+xml
461
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-affiliation-command+xml
462
+ notes^- OBSOLETED in favor of application/vnd.3gpp.mcvideo-info+xml|person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-affiliation-info+xml
463
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-info+xml
464
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-location-info+xml
465
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-mbms-usage-info+xml
466
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-service-config+xml
467
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-transmission-request+xml
468
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-ue-config+xml
469
+ person^Frederic_Firmin|template^application/vnd.3gpp.mcvideo-user-profile+xml
470
+ person^Frederic_Firmin|template^application/vnd.3gpp.mid-call+xml
471
+ person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-large
472
+ person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-small
473
+ person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-var
474
+ person^John_M_Meredith|template^application/vnd.3gpp.sms
475
+ person^Frederic_Firmin|template^application/vnd.3gpp.sms+xml
476
+ person^Frederic_Firmin|template^application/vnd.3gpp.srvcc-ext+xml
477
+ person^Frederic_Firmin|template^application/vnd.3gpp.SRVCC-info+xml
478
+ person^Frederic_Firmin|template^application/vnd.3gpp.state-and-event-info+xml
479
+ person^Frederic_Firmin|template^application/vnd.3gpp.ussd+xml
480
+ person^Andy_Dryden|template^application/vnd.3gpp2.bcmcsinfo+xml
481
+ person^AC_Mahendran|template^application/vnd.3gpp2.sms
482
+ person^AC_Mahendran|template^application/vnd.3gpp2.tcap
483
+ person^Gus_Asadi|template^application/vnd.3lightssoftware.imagescal
484
+ person^Michael_OBrien|template^application/vnd.3M.Post-it-Notes
485
+ person^Steve_Leow|template^application/vnd.accpac.simply.aso
486
+ person^Steve_Leow|template^application/vnd.accpac.simply.imp
487
+ person^Dovid_Lubin|template^application/vnd.acucobol
488
+ person^Dovid_Lubin|template^application/vnd.acucorp
489
+ -
490
+ person^Henrik_Andersson|template^application/vnd.adobe.flash.movie
491
+ person^Chris_Solc|template^application/vnd.adobe.formscentral.fcdt
492
+ person^Robert_Brambley^Steven_Heintz|template^application/vnd.adobe.fxp
493
+ person^Tapani_Otala|template^application/vnd.adobe.partial-upload
494
+ person^John_Brinkman|template^application/vnd.adobe.xdp+xml
495
+ person^Roberto_Perelman|template^application/vnd.adobe.xfdf
496
+ person^Jay_Moskowitz|template^application/vnd.aether.imp
497
+ person^Jörg_Palmer|template^application/vnd.afpc.afplinedata
498
+ person^Jörg_Palmer|template^application/vnd.afpc.modca
499
+ person^Katsuhiko_Ichinose|template^application/vnd.ah-barcode
500
+ person^Tor_Kristensen|template^application/vnd.ahead.space
501
+ person^Daniel_Mould^Gary_Clueit|template^application/vnd.airzip.filesecure.azf
502
+ person^Daniel_Mould^Gary_Clueit|template^application/vnd.airzip.filesecure.azs
503
+ person^Patrick_Brosse|template^application/vnd.amadeus+json
504
+ -
505
+ person^Kim_Scarborough|template^application/vnd.amazon.mobi8-ebook
506
+ person^Gary_Sands|template^application/vnd.americandynamics.acc
507
+ person^Kevin_Blumberg|template^application/vnd.amiga.ami
508
+ person^Mike_Amundsen|template^application/vnd.amundsen.maze+xml
509
+ person^Greg_Kaiser|template^application/vnd.android.ota
510
+ -
511
+ person^Kerrick_Staley|template^application/vnd.anki
512
+ person^Hiroyoshi_Mori|template^application/vnd.anser-web-certificate-issue-initiation
513
+ -
514
+ person^Daniel_Shelton|template^application/vnd.antix.game-component
515
+ person^Roger_Meier|template^application/vnd.apache.thrift.binary
516
+ person^Roger_Meier|template^application/vnd.apache.thrift.compact
517
+ person^Roger_Meier|template^application/vnd.apache.thrift.json
518
+ person^Steve_Klabnik|template^application/vnd.api+json
519
+ person^Adrian_Föder|template^application/vnd.apothekende.reservation+json
520
+ person^Peter_Bierman|template^application/vnd.apple.installer+xml
521
+ person^Manichandra_Sajjanapu|template^application/vnd.apple.keynote
522
+ rfc^rfc8216|template^application/vnd.apple.mpegurl
523
+ person^Manichandra_Sajjanapu|template^application/vnd.apple.numbers
524
+ person^Manichandra_Sajjanapu|template^application/vnd.apple.pages
525
+ -
526
+ notes^- OBSOLETED in favor of application/vnd.aristanetworks.swi|person^Bill_Fenner|template^application/vnd.arastra.swi
527
+ person^Bill_Fenner|template^application/vnd.aristanetworks.swi
528
+ person^Brad_Turner|template^application/vnd.artisan+json
529
+ person^Christopher_Smith|template^application/vnd.artsquare
530
+ person^Christopher_Snazell|template^application/vnd.astraea-software.iota
531
+ person^Horia_Cristian_Slusanschi|template^application/vnd.audiograph
532
+ person^Mike_Hearn|template^application/vnd.autopackage
533
+ person^Ben_Hinman|template^application/vnd.avalon+json
534
+ person^Vladimir_Vysotsky|template^application/vnd.avistar+xml
535
+ person^Giacomo_Guilizzoni|template^application/vnd.balsamiq.bmml+xml
536
+ person^Giacomo_Guilizzoni|template^application/vnd.balsamiq.bmpr
537
+ person^José_Del_Romano|template^application/vnd.banana-accounting
538
+ person^William_Lupton|template^application/vnd.bbf.usp.error
539
+ person^William_Lupton|template^application/vnd.bbf.usp.msg
540
+ person^William_Lupton|template^application/vnd.bbf.usp.msg+json
541
+ person^Jegulsky|template^application/vnd.bekitzur-stech+json
542
+ person^Heinz-Peter_Schütz|template^application/vnd.bint.med-content
543
+ person^Pathway_Commons|template^application/vnd.biopax.rdf+xml
544
+ person^Victor_Costan|template^application/vnd.blink-idb-value-wrapper
545
+ person^Thomas_Holmstrom|template^application/vnd.blueice.multipass
546
+ person^Mike_Foley|template^application/vnd.bluetooth.ep.oob
547
+ person^Mark_Powell|template^application/vnd.bluetooth.le.oob
548
+ person^Tadashi_Gotoh|template^application/vnd.bmi
549
+ person^Bryan_Blank^NCGIS|template^application/vnd.bpf
550
+ person^Bryan_Blank^NCGIS|template^application/vnd.bpf3
551
+ person^Philippe_Imoucha|template^application/vnd.businessobjects
552
+ person^Brent_Moore|template^application/vnd.byu.uapi+json
553
+ person^Joerg_Falkenberg|template^application/vnd.cab-jscript
554
+ person^Shin_Muto|template^application/vnd.canon-cpdl
555
+ person^Shin_Muto|template^application/vnd.canon-lips
556
+ person^Yüksel_Aydemir|template^application/vnd.capasystems-pg+json
557
+ person^Peter_Astrand|template^application/vnd.cendio.thinlinc.clientconf
558
+ person^Shuji_Fujii|template^application/vnd.century-systems.tcp_stream
559
+ person^Glenn_Howes|template^application/vnd.chemdraw+xml
560
+ person^Kim_Scarborough|template^application/vnd.chess-pgn
561
+ person^Chunyun_Xiong|template^application/vnd.chipnuts.karaoke-mmd
562
+ person^Hidekazu_Enjo|template^application/vnd.ciedi
563
+ person^Ulrich_Kortenkamp|template^application/vnd.cinderella
564
+ person^Pascal_Mayeux|template^application/vnd.cirpack.isdn-ext
565
+ person^Rintze_M._Zelle|template^application/vnd.citationstyles.style+xml
566
+ person^Ray_Simpson|template^application/vnd.claymore
567
+ person^Mike_Labatt|template^application/vnd.cloanto.rp9
568
+ person^Guenther_Brammer|template^application/vnd.clonk.c4group
569
+ person^Gaige_Paulsen|template^application/vnd.cluetrust.cartomobile-config
570
+ person^Gaige_Paulsen|template^application/vnd.cluetrust.cartomobile-config-pkg
571
+ person^Devyn_Collier_Johnson|template^application/vnd.coffeescript
572
+ person^Alexey_Meandrov|template^application/vnd.collabio.xodocuments.document
573
+ person^Alexey_Meandrov|template^application/vnd.collabio.xodocuments.document-template
574
+ person^Alexey_Meandrov|template^application/vnd.collabio.xodocuments.presentation
575
+ person^Alexey_Meandrov|template^application/vnd.collabio.xodocuments.presentation-template
576
+ person^Alexey_Meandrov|template^application/vnd.collabio.xodocuments.spreadsheet
577
+ person^Alexey_Meandrov|template^application/vnd.collabio.xodocuments.spreadsheet-template
578
+ person^Mike_Amundsen|template^application/vnd.collection+json
579
+ person^Irakli_Nadareishvili|template^application/vnd.collection.doc+json
580
+ person^Ioseb_Dzmanashvili|template^application/vnd.collection.next+json
581
+ person^Kim_Scarborough|template^application/vnd.comicbook+zip
582
+ person^Kim_Scarborough|template^application/vnd.comicbook-rar
583
+ person^David_Applebaum|template^application/vnd.commerce-battelle
584
+ person^Ravinder_Chandhok|template^application/vnd.commonspace
585
+ person^Frank_Patz|template^application/vnd.contact.cmsg
586
+ person^Alex_Crawford|template^application/vnd.coreos.ignition+json
587
+ person^Steve_Dellutri|template^application/vnd.cosmocaller
588
+ person^Andrew_Burt|template^application/vnd.crick.clicker
589
+ person^Andrew_Burt|template^application/vnd.crick.clicker.keyboard
590
+ person^Andrew_Burt|template^application/vnd.crick.clicker.palette
591
+ person^Andrew_Burt|template^application/vnd.crick.clicker.template
592
+ person^Andrew_Burt|template^application/vnd.crick.clicker.wordbank
593
+ person^Jim_Spiller|template^application/vnd.criticaltools.wbs+xml
594
+ person^Fränz_Friederes|template^application/vnd.cryptii.pipe+json
595
+ person^Connor_Horman|template^application/vnd.crypto-shade-file
596
+ person^Bayard_Kohlhepp|template^application/vnd.ctc-posml
597
+ person^Jim_Ancona|template^application/vnd.ctct.ws+xml
598
+ person^Michael_Sweet|template^application/vnd.cups-pdf
599
+ person^Michael_Sweet|template^application/vnd.cups-postscript
600
+ person^Michael_Sweet|template^application/vnd.cups-ppd
601
+ person^Michael_Sweet|template^application/vnd.cups-raster
602
+ person^Michael_Sweet|template^application/vnd.cups-raw
603
+ person^Robert_Byrnes|template^application/vnd.curl
604
+ -
605
+ -
606
+ person^Matt_Kern|template^application/vnd.cyan.dean.root+xml
607
+ person^Nor_Helmee|template^application/vnd.cybank
608
+ person^Viktor_Haag|template^application/vnd.d2l.coursepackage1p0+zip
609
+ person^Anders_Sandholm|template^application/vnd.dart
610
+ person^James_Fields|template^application/vnd.data-vision.rdz
611
+ person^Paul_Walsh|template^application/vnd.datapackage+json
612
+ person^Paul_Walsh|template^application/vnd.dataresource+json
613
+ person^Charles_Plessy|template^application/vnd.debian.binary-package
614
+ person^Michael_A_Dolan|template^application/vnd.dece.data
615
+ person^Michael_A_Dolan|template^application/vnd.dece.ttml+xml
616
+ person^Michael_A_Dolan|template^application/vnd.dece.unspecified
617
+ person^Michael_A_Dolan|template^application/vnd.dece.zip
618
+ person^Michael_Dixon|template^application/vnd.denovo.fcselayout-link
619
+ person^Henrik_Andersson|template^application/vnd.desmume.movie
620
+ person^Yamanaka|template^application/vnd.dir-bi.plate-dl-nosuffix
621
+ person^Axel_Ferrazzini|template^application/vnd.dm.delegation+xml
622
+ person^Meredith_Searcy|template^application/vnd.dna
623
+ person^Tom_Christie|template^application/vnd.document+json
624
+ -
625
+ person^Steve_Hattersley|template^application/vnd.dolby.mobile.1
626
+ person^Steve_Hattersley|template^application/vnd.dolby.mobile.2
627
+ person^Erik_Ronström|template^application/vnd.doremir.scorecloud-binary-document
628
+ person^David_Parker|template^application/vnd.dpgraph
629
+ person^William_C._Appleton|template^application/vnd.dreamfactory
630
+ person^Keith_Kester|template^application/vnd.drive+json
631
+ -
632
+ person^Ali_Teffahi|template^application/vnd.dtg.local
633
+ person^Ali_Teffahi|template^application/vnd.dtg.local.flash
634
+ person^Ali_Teffahi|template^application/vnd.dtg.local.html
635
+ person^Michael_Lagally^Peter_Siebert|template^application/vnd.dvb.ait
636
+ person^Michael_Lagally^Peter_Siebert|template^application/vnd.dvb.dvbj
637
+ person^Joerg_Heuer|template^application/vnd.dvb.esgcontainer
638
+ person^Roy_Yue|template^application/vnd.dvb.ipdcdftnotifaccess
639
+ person^Joerg_Heuer|template^application/vnd.dvb.ipdcesgaccess
640
+ person^Jerome_Marcon|template^application/vnd.dvb.ipdcesgaccess2
641
+ person^Jerome_Marcon|template^application/vnd.dvb.ipdcesgpdd
642
+ person^Yiling_Xu|template^application/vnd.dvb.ipdcroaming
643
+ person^Jean-Baptiste_Henry|template^application/vnd.dvb.iptv.alfec-base
644
+ person^Jean-Baptiste_Henry|template^application/vnd.dvb.iptv.alfec-enhancement
645
+ person^Roy_Yue|template^application/vnd.dvb.notif-aggregate-root+xml
646
+ person^Roy_Yue|template^application/vnd.dvb.notif-container+xml
647
+ person^Roy_Yue|template^application/vnd.dvb.notif-generic+xml
648
+ person^Roy_Yue|template^application/vnd.dvb.notif-ia-msglist+xml
649
+ person^Roy_Yue|template^application/vnd.dvb.notif-ia-registration-request+xml
650
+ person^Roy_Yue|template^application/vnd.dvb.notif-ia-registration-response+xml
651
+ person^Roy_Yue|template^application/vnd.dvb.notif-init+xml
652
+ person^Michael_Lagally^Peter_Siebert|template^application/vnd.dvb.pfr
653
+ person^Michael_Lagally^Peter_Siebert|template^application/vnd.dvb.service
654
+ person^Michael_Duffy|template^application/vnd.dxr
655
+ person^Roland_Mechling|template^application/vnd.dynageo
656
+ person^Carl_Anderson|template^application/vnd.dzr
657
+ person^Iain_Downs|template^application/vnd.easykaraoke.cdgdownload
658
+ person^Gert_Buettgenbach|template^application/vnd.ecdis-update
659
+ person^Wei_Tang|template^application/vnd.ecip.rlp
660
+ person^Thomas_Olsson|template^application/vnd.ecowin.chart
661
+ person^Thomas_Olsson|template^application/vnd.ecowin.filerequest
662
+ person^Thomas_Olsson|template^application/vnd.ecowin.fileupdate
663
+ person^Thomas_Olsson|template^application/vnd.ecowin.series
664
+ person^Thomas_Olsson|template^application/vnd.ecowin.seriesrequest
665
+ person^Thomas_Olsson|template^application/vnd.ecowin.seriesupdate
666
+ person^Fu_Siyuan^UEFI_Forum|template^application/vnd.efi.img
667
+ person^Fu_Siyuan^UEFI_Forum|template^application/vnd.efi.iso
668
+ person^Filip_Navara|template^application/vnd.emclient.accessrequest+xml
669
+ person^Paul_Santinelli_Jr.|template^application/vnd.enliven
670
+ person^Chris_Eich|template^application/vnd.enphase.envoy
671
+ person^Tim_Brody|template^application/vnd.eprints.data+xml
672
+ person^Shoji_Hoshina|template^application/vnd.epson.esf
673
+ person^Shoji_Hoshina|template^application/vnd.epson.msf
674
+ person^Yu_Gu|template^application/vnd.epson.quickanime
675
+ person^Yasuhito_Nagatomo|template^application/vnd.epson.salt
676
+ person^Shoji_Hoshina|template^application/vnd.epson.ssf
677
+ person^Paul_Tidwell|template^application/vnd.ericsson.quickcall
678
+ person^Marcus_Ligi_Büschleb|template^application/vnd.espass-espass+zip
679
+ person^Szilveszter_Tóth|template^application/vnd.eszigno3+xml
680
+ person^Shicheng_Hu|template^application/vnd.etsi.aoc+xml
681
+ person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.asic-e+zip
682
+ person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.asic-s+zip
683
+ person^Shicheng_Hu|template^application/vnd.etsi.cug+xml
684
+ person^Shicheng_Hu|template^application/vnd.etsi.iptvcommand+xml
685
+ person^Shicheng_Hu|template^application/vnd.etsi.iptvdiscovery+xml
686
+ person^Shicheng_Hu|template^application/vnd.etsi.iptvprofile+xml
687
+ person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-bc+xml
688
+ person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-cod+xml
689
+ person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-npvr+xml
690
+ person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.iptvservice+xml
691
+ person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.iptvsync+xml
692
+ person^Shicheng_Hu|template^application/vnd.etsi.iptvueprofile+xml
693
+ person^Shicheng_Hu|template^application/vnd.etsi.mcid+xml
694
+ person^Ian_Medland^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.mheg5
695
+ person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.overload-control-policy-dataset+xml
696
+ person^Jiwan_Han^Thomas_Belling|template^application/vnd.etsi.pstn+xml
697
+ person^Shicheng_Hu|template^application/vnd.etsi.sci+xml
698
+ person^Shicheng_Hu|template^application/vnd.etsi.simservs+xml
699
+ person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.timestamp-token
700
+ person^Shicheng_Hu|template^application/vnd.etsi.tsl+xml
701
+ person^Shicheng_Hu|template^application/vnd.etsi.tsl.der
702
+ person^Pete_Resnick|template^application/vnd.eudora.data
703
+ person^James_Bellinger|template^application/vnd.evolv.ecig.profile
704
+ person^James_Bellinger|template^application/vnd.evolv.ecig.settings
705
+ person^James_Bellinger|template^application/vnd.evolv.ecig.theme
706
+ person^Bill_Kidwell|template^application/vnd.exstream-empower+zip
707
+ person^Bill_Kidwell|template^application/vnd.exstream-package
708
+ person^ElectronicZombieCorp|template^application/vnd.ezpix-album
709
+ person^ElectronicZombieCorp|template^application/vnd.ezpix-package
710
+ person^Samu_Sarivaara|template^application/vnd.f-secure.mobile
711
+ person^Thomas_Huth|template^application/vnd.fastcopy-disk-image
712
+ person^Steve_Zilles|template^application/vnd.fdf
713
+ person^Chad_Trabant|template^application/vnd.fdsn.mseed
714
+ person^Chad_Trabant|template^application/vnd.fdsn.seed
715
+ person^Holstage|template^application/vnd.ffsns
716
+ person^Steve_Gilberd|template^application/vnd.ficlab.flb+zip
717
+ person^Harms_Moeller|template^application/vnd.filmit.zfc
718
+ person^Ingo_Hammann|template^application/vnd.fints
719
+ person^Alex_Dubov|template^application/vnd.firemonkeys.cloudcell
720
+ person^Dick_Floersch|template^application/vnd.FloGraphIt
721
+ person^Marc_Winter|template^application/vnd.fluxtime.clip
722
+ person^George_Williams|template^application/vnd.font-fontforge-sfd
723
+ person^Mike_Wexler|template^application/vnd.framemaker
724
+ person^Alexis_Tamas|template^application/vnd.frogans.fnc
725
+ person^Alexis_Tamas|template^application/vnd.frogans.ltf
726
+ person^Derek_Smith|template^application/vnd.fsc.weblaunch
727
+ person^Nobukazu_Togashi|template^application/vnd.fujitsu.oasys
728
+ person^Nobukazu_Togashi|template^application/vnd.fujitsu.oasys2
729
+ person^Seiji_Okudaira|template^application/vnd.fujitsu.oasys3
730
+ person^Masahiko_Sugimoto|template^application/vnd.fujitsu.oasysgp
731
+ person^Masumi_Ogita|template^application/vnd.fujitsu.oasysprs
732
+ person^Fumio_Tanabe|template^application/vnd.fujixerox.ART-EX
733
+ person^Fumio_Tanabe|template^application/vnd.fujixerox.ART4
734
+ person^Masanori_Onda|template^application/vnd.fujixerox.ddd
735
+ person^Yasuo_Taguchi|template^application/vnd.fujixerox.docuworks
736
+ person^Takashi_Matsumoto|template^application/vnd.fujixerox.docuworks.binder
737
+ person^Kiyoshi_Tashiro|template^application/vnd.fujixerox.docuworks.container
738
+ person^Fumio_Tanabe|template^application/vnd.fujixerox.HBPL
739
+ person^Jann_Pruulman|template^application/vnd.fut-misnet
740
+ person^Andrey_Galkin|template^application/vnd.futoin+cbor
741
+ person^Andrey_Galkin|template^application/vnd.futoin+json
742
+ person^Simon_Birtwistle|template^application/vnd.fuzzysheet
743
+ person^Torben_Frey|template^application/vnd.genomatix.tuxedo
744
+ notes^(OBSOLETED by in favor of application/geo+json)|person^Sean_Gillies|rfc^rfc7946|template^application/vnd.geo+json
745
+ notes^- OBSOLETED by request|person^Francois_Pirsch|template^application/vnd.geocube+xml
746
+ person^GeoGebra^Yves_Kreis|template^application/vnd.geogebra.file
747
+ person^GeoGebra^Yves_Kreis|template^application/vnd.geogebra.tool
748
+ person^Michael_Hvidsten|template^application/vnd.geometry-explorer
749
+ person^Matthias_Ehmann|template^application/vnd.geonext
750
+ person^Christian_Mercat|template^application/vnd.geoplan
751
+ person^Christian_Mercat|template^application/vnd.geospace
752
+ person^Thomas_Weyn|template^application/vnd.gerber
753
+ person^Gil_Bernabeu|template^application/vnd.globalplatform.card-content-mgt
754
+ person^Gil_Bernabeu|template^application/vnd.globalplatform.card-content-mgt-response
755
+ notes^- DEPRECATED|person^Christian_V._Sciberras|template^application/vnd.gmx
756
+ person^Michael_Ashbridge|template^application/vnd.google-earth.kml+xml
757
+ person^Michael_Ashbridge|template^application/vnd.google-earth.kmz
758
+ person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.e-form+xml
759
+ person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.e-form+zip
760
+ person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.xmldatacontainer+xml
761
+ person^Jeff_Tupper|template^application/vnd.grafeq
762
+ person^Jeff_Lawson|template^application/vnd.gridmp
763
+ person^Todd_Joseph|template^application/vnd.groove-account
764
+ person^Todd_Joseph|template^application/vnd.groove-help
765
+ person^Todd_Joseph|template^application/vnd.groove-identity-message
766
+ person^Todd_Joseph|template^application/vnd.groove-injector
767
+ person^Todd_Joseph|template^application/vnd.groove-tool-message
768
+ person^Todd_Joseph|template^application/vnd.groove-tool-template
769
+ person^Todd_Joseph|template^application/vnd.groove-vcard
770
+ person^Mike_Kelly|template^application/vnd.hal+json
771
+ person^Mike_Kelly|template^application/vnd.hal+xml
772
+ person^Eric_Hamilton|template^application/vnd.HandHeld-Entertainment+xml
773
+ person^Ingo_Hammann|template^application/vnd.hbci
774
+ person^Jan_Schütze|template^application/vnd.hc+json
775
+ person^Doug_R._Serres|template^application/vnd.hcl-bireports
776
+ person^Javier_D._Fernández|template^application/vnd.hdt
777
+ person^Wesley_Beary|template^application/vnd.heroku+json
778
+ person^Randy_Jones|template^application/vnd.hhe.lesson-player
779
+ person^Bob_Pentecost|template^application/vnd.hp-HPGL
780
+ person^Aloke_Gupta|template^application/vnd.hp-hpid
781
+ person^Steve_Aubrey|template^application/vnd.hp-hps
782
+ person^Amir_Gaash|template^application/vnd.hp-jlyt
783
+ person^Bob_Pentecost|template^application/vnd.hp-PCL
784
+ person^Bob_Pentecost|template^application/vnd.hp-PCLXL
785
+ person^Franck_Lefevre|template^application/vnd.httphone
786
+ person^Allen_Gillam|template^application/vnd.hydrostatix.sof-data
787
+ person^Irakli_Nadareishvili|template^application/vnd.hyper+json
788
+ person^Mario_Demuth|template^application/vnd.hyper-item+json
789
+ person^Daniel_Sims|template^application/vnd.hyperdrive+json
790
+ person^James_Minnis|template^application/vnd.hzn-3d-crossword
791
+ notes^- OBSOLETED in favor of vnd.afpc.afplinedata|person^Roger_Buis|template^application/vnd.ibm.afplinedata
792
+ person^Bruce_Tantlinger|template^application/vnd.ibm.electronic-media
793
+ person^Amir_Herzberg|template^application/vnd.ibm.MiniPay
794
+ notes^- OBSOLETED in favor of application/vnd.afpc.modca|person^Reinhard_Hohensee|template^application/vnd.ibm.modcap
795
+ person^Bruce_Tantlinger|template^application/vnd.ibm.rights-management
796
+ person^Bruce_Tantlinger|template^application/vnd.ibm.secure-container
797
+ person^Phil_Green|template^application/vnd.iccprofile
798
+ person^Purva_R_Rajkotia|template^application/vnd.ieee.1905
799
+ person^Tim_Fisher|template^application/vnd.igloader
800
+ person^Dirk_Farin|template^application/vnd.imagemeter.folder+zip
801
+ person^Dirk_Farin|template^application/vnd.imagemeter.image+zip
802
+ person^Mathieu_Villegas|template^application/vnd.immervision-ivp
803
+ person^Mathieu_Villegas|template^application/vnd.immervision-ivu
804
+ person^Lisa_Mattson|template^application/vnd.ims.imsccv1p1
805
+ person^Lisa_Mattson|template^application/vnd.ims.imsccv1p2
806
+ person^Lisa_Mattson|template^application/vnd.ims.imsccv1p3
807
+ person^Lisa_Mattson|template^application/vnd.ims.lis.v2.result+json
808
+ person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolconsumerprofile+json
809
+ person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolproxy+json
810
+ person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolproxy.id+json
811
+ person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolsettings+json
812
+ person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolsettings.simple+json
813
+ person^Mark_Wahl|template^application/vnd.informedcontrol.rms+xml
814
+ notes^- OBSOLETED in favor of application/vnd.visionary|person^Christopher_Gales|template^application/vnd.informix-visionary
815
+ person^Charles_Engelke|template^application/vnd.infotech.project
816
+ person^Charles_Engelke|template^application/vnd.infotech.project+xml
817
+ person^Takanori_Sudo|template^application/vnd.innopath.wamp.notification
818
+ person^Jon_Swanson|template^application/vnd.insors.igm
819
+ person^Tom_Gurak|template^application/vnd.intercon.formnet
820
+ person^Yves_Kreis_2|template^application/vnd.intergeo
821
+ person^Luke_Tomasello|template^application/vnd.intertrust.digibox
822
+ person^Luke_Tomasello|template^application/vnd.intertrust.nncp
823
+ person^Greg_Scratchley|template^application/vnd.intu.qbo
824
+ person^Greg_Scratchley|template^application/vnd.intu.qfx
825
+ person^Michael_Steidl|template^application/vnd.iptc.g2.catalogitem+xml
826
+ person^Michael_Steidl|template^application/vnd.iptc.g2.conceptitem+xml
827
+ person^Michael_Steidl|template^application/vnd.iptc.g2.knowledgeitem+xml
828
+ person^Michael_Steidl|template^application/vnd.iptc.g2.newsitem+xml
829
+ person^Michael_Steidl|template^application/vnd.iptc.g2.newsmessage+xml
830
+ person^Michael_Steidl|template^application/vnd.iptc.g2.packageitem+xml
831
+ person^Michael_Steidl|template^application/vnd.iptc.g2.planningitem+xml
832
+ person^Per_Ersson|template^application/vnd.ipunplugged.rcprofile
833
+ person^Martin_Knowles|template^application/vnd.irepository.package+xml
834
+ person^Satish_Navarajan|template^application/vnd.is-xpr
835
+ person^Ryan_Brinkman|template^application/vnd.isac.fcs
836
+ person^Frank_Wiebeler|template^application/vnd.iso11783-10+zip
837
+ person^Brijesh_Kumar|template^application/vnd.jam
838
+ person^Kiyofusa_Fujii|template^application/vnd.japannet-directory-service
839
+ person^Jun_Yoshitake|template^application/vnd.japannet-jpnstore-wakeup
840
+ person^Kiyofusa_Fujii|template^application/vnd.japannet-payment-wakeup
841
+ person^Jun_Yoshitake|template^application/vnd.japannet-registration
842
+ person^Kiyofusa_Fujii|template^application/vnd.japannet-registration-wakeup
843
+ person^Jun_Yoshitake|template^application/vnd.japannet-setstore-wakeup
844
+ person^Jun_Yoshitake|template^application/vnd.japannet-verification
845
+ person^Kiyofusa_Fujii|template^application/vnd.japannet-verification-wakeup
846
+ person^Mikhail_Gorshenev|template^application/vnd.jcp.javame.midlet-rms
847
+ person^Sebastiaan_Deckers|template^application/vnd.jisp
848
+ person^Joost|template^application/vnd.joost.joda-archive
849
+ person^Yokoyama_Kiyonobu|template^application/vnd.jsk.isdn-ngn
850
+ person^Tim_Macdonald|template^application/vnd.kahootz
851
+ person^David_Faure|template^application/vnd.kde.karbon
852
+ person^David_Faure|template^application/vnd.kde.kchart
853
+ person^David_Faure|template^application/vnd.kde.kformula
854
+ person^David_Faure|template^application/vnd.kde.kivio
855
+ person^David_Faure|template^application/vnd.kde.kontour
856
+ person^David_Faure|template^application/vnd.kde.kpresenter
857
+ person^David_Faure|template^application/vnd.kde.kspread
858
+ person^David_Faure|template^application/vnd.kde.kword
859
+ person^Dirk_DiGiorgio-Haag|template^application/vnd.kenameaapp
860
+ person^Jack_Bennett|template^application/vnd.kidspiration
861
+ person^Hemant_Thakkar|template^application/vnd.Kinar
862
+ person^Pete_Cole|template^application/vnd.koan
863
+ person^Michael_J._Donahue|template^application/vnd.kodak-descriptor
864
+ person^Bryan_Blank^NCGIS|template^application/vnd.las
865
+ person^Rob_Bailey|template^application/vnd.las.las+json
866
+ person^Rob_Bailey|template^application/vnd.las.las+xml
867
+ person^Bryan_Blank^NCGIS|template^application/vnd.laszip
868
+ person^Mark_C_Fralick|template^application/vnd.leap+json
869
+ person^Brett_McDowell|template^application/vnd.liberty-request+xml
870
+ person^Catherine_E._White|template^application/vnd.llamagraphics.life-balance.desktop
871
+ person^Catherine_E._White|template^application/vnd.llamagraphics.life-balance.exchange+xml
872
+ person^Victor_Kuchynsky|template^application/vnd.logipipe.circuit+zip
873
+ person^Sten_Linnarsson|template^application/vnd.loom
874
+ person^Paul_Wattenberger|template^application/vnd.lotus-1-2-3
875
+ person^Paul_Wattenberger|template^application/vnd.lotus-approach
876
+ person^Paul_Wattenberger|template^application/vnd.lotus-freelance
877
+ person^Michael_Laramie|template^application/vnd.lotus-notes
878
+ person^Paul_Wattenberger|template^application/vnd.lotus-organizer
879
+ person^Paul_Wattenberger|template^application/vnd.lotus-screencam
880
+ person^Paul_Wattenberger|template^application/vnd.lotus-wordpro
881
+ person^James_Berry|template^application/vnd.macports.portpkg
882
+ person^Blake_Thompson|template^application/vnd.mapbox-vector-tile
883
+ person^Gary_Ellison|template^application/vnd.marlin.drm.actiontoken+xml
884
+ person^Gary_Ellison|template^application/vnd.marlin.drm.conftoken+xml
885
+ person^Gary_Ellison|template^application/vnd.marlin.drm.license+xml
886
+ person^Gary_Ellison|template^application/vnd.marlin.drm.mdcf
887
+ person^Jorn_Wildt|template^application/vnd.mason+json
888
+ person^William_Stevenson|template^application/vnd.maxmind.maxmind-db
889
+ person^Tadashi_Gotoh|template^application/vnd.mcd
890
+ person^Frank_Schoonjans|template^application/vnd.medcalcdata
891
+ person^Henry_Flurry|template^application/vnd.mediastation.cdkey
892
+ person^Eric_Wedel|template^application/vnd.meridian-slingshot
893
+ person^Masaaki_Hirai|template^application/vnd.MFER
894
+ person^Yukari_Ikeda|template^application/vnd.mfmp
895
+ person^Dali_Zheng|template^application/vnd.micro+json
896
+ person^Joe_Prevo|template^application/vnd.micrografx.flo
897
+ person^Joe_Prevo|template^application/vnd.micrografx.igx
898
+ person^Henrik_Andersson|template^application/vnd.microsoft.portable-executable
899
+ person^Henrik_Andersson|template^application/vnd.microsoft.windows.thumbnail-cache
900
+ person^Nils_Langhammer|template^application/vnd.miele+json
901
+ person^Mike_Wexler|template^application/vnd.mif
902
+ person^Chris_Bartram|template^application/vnd.minisoft-hp3000-save
903
+ person^Tanaka|template^application/vnd.mitsubishi.misty-guard.trustweb
904
+ person^Allen_K._Kabayama|template^application/vnd.Mobius.DAF
905
+ person^Allen_K._Kabayama|template^application/vnd.Mobius.DIS
906
+ person^Alex_Devasia|template^application/vnd.Mobius.MBK
907
+ person^Alex_Devasia|template^application/vnd.Mobius.MQY
908
+ person^Allen_K._Kabayama|template^application/vnd.Mobius.MSL
909
+ person^Allen_K._Kabayama|template^application/vnd.Mobius.PLC
910
+ person^Allen_K._Kabayama|template^application/vnd.Mobius.TXF
911
+ person^Bjorn_Wennerstrom|template^application/vnd.mophun.application
912
+ person^Bjorn_Wennerstrom|template^application/vnd.mophun.certificate
913
+ person^Mark_Patton|template^application/vnd.motorola.flexsuite
914
+ person^Mark_Patton|template^application/vnd.motorola.flexsuite.adsi
915
+ person^Mark_Patton|template^application/vnd.motorola.flexsuite.fis
916
+ person^Mark_Patton|template^application/vnd.motorola.flexsuite.gotap
917
+ person^Mark_Patton|template^application/vnd.motorola.flexsuite.kmr
918
+ person^Mark_Patton|template^application/vnd.motorola.flexsuite.ttc
919
+ person^Mark_Patton|template^application/vnd.motorola.flexsuite.wem
920
+ person^Rafie_Shamsaasef|template^application/vnd.motorola.iprm
921
+ person^Braden_N_McDaniel|template^application/vnd.mozilla.xul+xml
922
+ person^Shawn_Maloney|template^application/vnd.ms-3mfdocument
923
+ person^Dean_Slawson|template^application/vnd.ms-artgalry
924
+ person^Eric_Fleischman|template^application/vnd.ms-asf
925
+ person^Kim_Scarborough|template^application/vnd.ms-cab-compressed
926
+ person^Sukvinder_S._Gill|template^application/vnd.ms-excel
927
+ person^Chris_Rae|template^application/vnd.ms-excel.addin.macroEnabled.12
928
+ person^Chris_Rae|template^application/vnd.ms-excel.sheet.binary.macroEnabled.12
929
+ person^Chris_Rae|template^application/vnd.ms-excel.sheet.macroEnabled.12
930
+ person^Chris_Rae|template^application/vnd.ms-excel.template.macroEnabled.12
931
+ person^Kim_Scarborough|template^application/vnd.ms-fontobject
932
+ person^Anatoly_Techtonik|template^application/vnd.ms-htmlhelp
933
+ person^Eric_Ledoux|template^application/vnd.ms-ims
934
+ person^Eric_Ledoux|template^application/vnd.ms-lrm
935
+ person^Chris_Rae|template^application/vnd.ms-office.activeX+xml
936
+ person^Chris_Rae|template^application/vnd.ms-officetheme
937
+ -
938
+ -
939
+ -
940
+ person^Daniel_Schneider|template^application/vnd.ms-playready.initiator+xml
941
+ person^Sukvinder_S._Gill|template^application/vnd.ms-powerpoint
942
+ person^Chris_Rae|template^application/vnd.ms-powerpoint.addin.macroEnabled.12
943
+ person^Chris_Rae|template^application/vnd.ms-powerpoint.presentation.macroEnabled.12
944
+ person^Chris_Rae|template^application/vnd.ms-powerpoint.slide.macroEnabled.12
945
+ person^Chris_Rae|template^application/vnd.ms-powerpoint.slideshow.macroEnabled.12
946
+ person^Chris_Rae|template^application/vnd.ms-powerpoint.template.macroEnabled.12
947
+ person^Justin_Hutchings|template^application/vnd.ms-PrintDeviceCapabilities+xml
948
+ person^Justin_Hutchings|template^application/vnd.ms-PrintSchemaTicket+xml
949
+ person^Sukvinder_S._Gill|template^application/vnd.ms-project
950
+ person^Sukvinder_S._Gill|template^application/vnd.ms-tnef
951
+ person^Justin_Hutchings|template^application/vnd.ms-windows.devicepairing
952
+ person^Justin_Hutchings|template^application/vnd.ms-windows.nwprinting.oob
953
+ person^Justin_Hutchings|template^application/vnd.ms-windows.printerpairing
954
+ person^Justin_Hutchings|template^application/vnd.ms-windows.wsd.oob
955
+ person^Kevin_Lau|template^application/vnd.ms-wmdrm.lic-chlg-req
956
+ person^Kevin_Lau|template^application/vnd.ms-wmdrm.lic-resp
957
+ person^Kevin_Lau|template^application/vnd.ms-wmdrm.meter-chlg-req
958
+ person^Kevin_Lau|template^application/vnd.ms-wmdrm.meter-resp
959
+ person^Chris_Rae|template^application/vnd.ms-word.document.macroEnabled.12
960
+ person^Chris_Rae|template^application/vnd.ms-word.template.macroEnabled.12
961
+ person^Sukvinder_S._Gill|template^application/vnd.ms-works
962
+ person^Dan_Plastina|template^application/vnd.ms-wpl
963
+ person^Jesse_McGatha|template^application/vnd.ms-xpsdocument
964
+ person^Thomas_Huth|template^application/vnd.msa-disk-image
965
+ person^Gwenael_Le_Bodic|template^application/vnd.mseq
966
+ person^Malte_Borcherding|template^application/vnd.msign
967
+ person^Steve_Mills|template^application/vnd.multiad.creator
968
+ person^Steve_Mills|template^application/vnd.multiad.creator.cif
969
+ person^Tim_Butler|template^application/vnd.music-niff
970
+ person^Greg_Adams|template^application/vnd.musician
971
+ person^Chandrashekhara_Anantharamu|template^application/vnd.muvee.style
972
+ person^Franck_Lefevre|template^application/vnd.mynfc
973
+ person^Lauri_Tarkkala|template^application/vnd.ncd.control
974
+ person^Lauri_Tarkkala|template^application/vnd.ncd.reference
975
+ person^Thomas_Schoffelen|template^application/vnd.nearst.inv+json
976
+ person^Steve_Judkins|template^application/vnd.nervana
977
+ person^Andy_Mutz|template^application/vnd.netfpx
978
+ person^Dan_DuFeu|template^application/vnd.neurolanguage.nlu
979
+ person^Amit_Kumar_Gupta|template^application/vnd.nimn
980
+ person^Henrik_Andersson|template^application/vnd.nintendo.nitro.rom
981
+ person^Henrik_Andersson|template^application/vnd.nintendo.snes.rom
982
+ person^Steve_Rogan|template^application/vnd.nitf
983
+ person^Monty_Solomon|template^application/vnd.noblenet-directory
984
+ person^Monty_Solomon|template^application/vnd.noblenet-sealer
985
+ person^Monty_Solomon|template^application/vnd.noblenet-web
986
+ person^Nokia|template^application/vnd.nokia.catalogs
987
+ person^Nokia|template^application/vnd.nokia.conml+wbxml
988
+ person^Nokia|template^application/vnd.nokia.conml+xml
989
+ person^Nokia|template^application/vnd.nokia.iptv.config+xml
990
+ person^Nokia|template^application/vnd.nokia.iSDS-radio-presets
991
+ person^Nokia|template^application/vnd.nokia.landmark+wbxml
992
+ person^Nokia|template^application/vnd.nokia.landmark+xml
993
+ person^Nokia|template^application/vnd.nokia.landmarkcollection+xml
994
+ person^Nokia|template^application/vnd.nokia.n-gage.ac+xml
995
+ person^Nokia|template^application/vnd.nokia.n-gage.data
996
+ notes^- OBSOLETE; no replacement given|person^Nokia|template^application/vnd.nokia.n-gage.symbian.install
997
+ person^Nokia|template^application/vnd.nokia.ncd
998
+ -
999
+ person^Nokia|template^application/vnd.nokia.pcd+wbxml
1000
+ person^Nokia|template^application/vnd.nokia.pcd+xml
1001
+ person^Nokia|template^application/vnd.nokia.radio-preset
1002
+ person^Nokia|template^application/vnd.nokia.radio-presets
1003
+ person^Janine_Swenson|template^application/vnd.novadigm.EDM
1004
+ person^Janine_Swenson|template^application/vnd.novadigm.EDX
1005
+ person^Janine_Swenson|template^application/vnd.novadigm.EXT
1006
+ person^Akinori_Taya|template^application/vnd.ntt-local.content-share
1007
+ person^NTT-local|template^application/vnd.ntt-local.file-transfer
1008
+ person^NTT-local|template^application/vnd.ntt-local.ogw_remote-access
1009
+ person^NTT-local|template^application/vnd.ntt-local.sip-ta_remote
1010
+ person^NTT-local|template^application/vnd.ntt-local.sip-ta_tcp_stream
1011
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.chart
1012
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.chart-template
1013
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.database
1014
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.formula
1015
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.formula-template
1016
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.graphics
1017
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.graphics-template
1018
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.image
1019
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.image-template
1020
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.presentation
1021
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.presentation-template
1022
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.spreadsheet
1023
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.spreadsheet-template
1024
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.text
1025
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.text-master
1026
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.text-template
1027
+ person^OASIS^Svante_Schubert|template^application/vnd.oasis.opendocument.text-web
1028
+ person^Matthias_Hessling|template^application/vnd.obn
1029
+ person^Michael_Koster|template^application/vnd.ocf+cbor
1030
+ person^Eli_Grey|template^application/vnd.oftn.l10n+json
1031
+ person^Claire_DEsclercs|template^application/vnd.oipf.contentaccessdownload+xml
1032
+ person^Claire_DEsclercs|template^application/vnd.oipf.contentaccessstreaming+xml
1033
+ person^Claire_DEsclercs|template^application/vnd.oipf.cspg-hexbinary
1034
+ person^Claire_DEsclercs|template^application/vnd.oipf.dae.svg+xml
1035
+ person^Claire_DEsclercs|template^application/vnd.oipf.dae.xhtml+xml
1036
+ person^Claire_DEsclercs|template^application/vnd.oipf.mippvcontrolmessage+xml
1037
+ person^Claire_DEsclercs|template^application/vnd.oipf.pae.gem
1038
+ person^Claire_DEsclercs|template^application/vnd.oipf.spdiscovery+xml
1039
+ person^Claire_DEsclercs|template^application/vnd.oipf.spdlist+xml
1040
+ person^Claire_DEsclercs|template^application/vnd.oipf.ueprofile+xml
1041
+ person^Claire_DEsclercs|template^application/vnd.oipf.userprofile+xml
1042
+ person^John_Palmieri|template^application/vnd.olpc-sugar
1043
+ person^Ilan_Mahalal|template^application/vnd.oma-scws-config
1044
+ person^Ilan_Mahalal|template^application/vnd.oma-scws-http-request
1045
+ person^Ilan_Mahalal|template^application/vnd.oma-scws-http-response
1046
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.associated-procedure-parameter+xml
1047
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.drm-trigger+xml
1048
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.imd+xml
1049
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.ltkm
1050
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.notification+xml
1051
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.provisioningtrigger
1052
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.sgboot
1053
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.sgdd+xml
1054
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.sgdu
1055
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.simple-symbol-container
1056
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.smartcard-trigger+xml
1057
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.sprov+xml
1058
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.bcast.stkm
1059
+ person^Hao_Wang^OMA|template^application/vnd.oma.cab-address-book+xml
1060
+ person^Hao_Wang^OMA|template^application/vnd.oma.cab-feature-handler+xml
1061
+ person^Hao_Wang^OMA|template^application/vnd.oma.cab-pcc+xml
1062
+ person^Hao_Wang^OMA|template^application/vnd.oma.cab-subs-invite+xml
1063
+ person^Hao_Wang^OMA|template^application/vnd.oma.cab-user-prefs+xml
1064
+ person^Avi_Primo^Open_Mobile_Naming_Authority|template^application/vnd.oma.dcd
1065
+ person^Avi_Primo^Open_Mobile_Naming_Authority|template^application/vnd.oma.dcdc
1066
+ person^Jun_Sato^Open_Mobile_Alliance_BAC_DLDRM_Working_Group|template^application/vnd.oma.dd2+xml
1067
+ person^Open_Mobile_Naming_Authority^Uwe_Rauschenbach|template^application/vnd.oma.drm.risd+xml
1068
+ person^OMA_Presence_and_Availability_PAG_Working_Group^Sean_Kelley|template^application/vnd.oma.group-usage-list+xml
1069
+ person^John_Mudge^Open_Mobile_Naming_Authority|template^application/vnd.oma.lwm2m+json
1070
+ person^John_Mudge^Open_Mobile_Naming_Authority|template^application/vnd.oma.lwm2m+tlv
1071
+ person^Brian_McColgan^Open_Mobile_Naming_Authority|template^application/vnd.oma.pal+xml
1072
+ person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.detailed-progress-report+xml
1073
+ person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.final-report+xml
1074
+ person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group^Sean_Kelley|template^application/vnd.oma.poc.groups+xml
1075
+ person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.invocation-descriptor+xml
1076
+ person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.optimized-progress-report+xml
1077
+ person^Bryan_Sullivan^OMA|template^application/vnd.oma.push
1078
+ person^Open_Mobile_Naming_Authority^Wenjun_Zeng|template^application/vnd.oma.scidm.messages+xml
1079
+ person^OMA_Presence_and_Availability_PAG_Working_Group^Sean_Kelley|template^application/vnd.oma.xcap-directory+xml
1080
+ person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-email+xml
1081
+ person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-file+xml
1082
+ person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-folder+xml
1083
+ person^Julien_Grange|template^application/vnd.omaloc-supl-init
1084
+ person^Nathan_Black|template^application/vnd.onepager
1085
+ person^Nathan_Black|template^application/vnd.onepagertamp
1086
+ person^Nathan_Black|template^application/vnd.onepagertamx
1087
+ person^Nathan_Black|template^application/vnd.onepagertat
1088
+ person^Nathan_Black|template^application/vnd.onepagertatp
1089
+ person^Nathan_Black|template^application/vnd.onepagertatx
1090
+ person^Mark_Otaris|template^application/vnd.openblox.game+xml
1091
+ person^Mark_Otaris|template^application/vnd.openblox.game-binary
1092
+ person^Craig_Bruce|template^application/vnd.openeye.oeb
1093
+ -
1094
+ person^Paul_Norman|template^application/vnd.openstreetmap.data+xml
1095
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.custom-properties+xml
1096
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.customXmlProperties+xml
1097
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawing+xml
1098
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.chart+xml
1099
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
1100
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
1101
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
1102
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
1103
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
1104
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.extended-properties+xml
1105
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
1106
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.comments+xml
1107
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
1108
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
1109
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
1110
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presentation
1111
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
1112
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
1113
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slide
1114
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slide+xml
1115
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
1116
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
1117
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideshow
1118
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
1119
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
1120
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
1121
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.tags+xml
1122
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.template
1123
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
1124
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
1125
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
1126
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
1127
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
1128
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
1129
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
1130
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
1131
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
1132
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
1133
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
1134
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
1135
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
1136
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
1137
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
1138
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
1139
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
1140
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
1141
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
1142
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
1143
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
1144
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.template
1145
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
1146
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
1147
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
1148
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
1149
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.theme+xml
1150
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.themeOverride+xml
1151
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.vmlDrawing
1152
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
1153
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document
1154
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
1155
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
1156
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
1157
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
1158
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
1159
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
1160
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
1161
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
1162
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
1163
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.template
1164
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
1165
+ person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
1166
+ person^Makoto_Murata|template^application/vnd.openxmlformats-package.core-properties+xml
1167
+ person^Makoto_Murata|template^application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
1168
+ person^Makoto_Murata|template^application/vnd.openxmlformats-package.relationships+xml
1169
+ person^Ning_Dong|template^application/vnd.oracle.resource+json
1170
+ person^CHATRAS_Bruno|template^application/vnd.orange.indata
1171
+ person^Steven_Klos|template^application/vnd.osa.netdeploy
1172
+ person^Jason_Birch|template^application/vnd.osgeo.mapguide.package
1173
+ person^Peter_Kriens|template^application/vnd.osgi.bundle
1174
+ person^Peter_Kriens|template^application/vnd.osgi.dp
1175
+ person^Peter_Kriens|template^application/vnd.osgi.subsystem
1176
+ person^Magnus_Nystrom|template^application/vnd.otps.ct-kip+xml
1177
+ person^C._Titus_Brown|template^application/vnd.oxli.countgraph
1178
+ person^Steve_Rice|template^application/vnd.pagerduty+json
1179
+ person^Gavin_Peacock|template^application/vnd.palm
1180
+ person^Natarajan_Balasundara|template^application/vnd.panoply
1181
+ person^John_Kemp|template^application/vnd.paos.xml
1182
+ person^Christian_Trosclair|template^application/vnd.patentdive
1183
+ person^Andrew_David_Kendall|template^application/vnd.patientecommsdoc
1184
+ person^Prakash_Baskaran|template^application/vnd.pawaafile
1185
+ person^Slawomir_Lisznianski|template^application/vnd.pcos
1186
+ person^April_Gandert|template^application/vnd.pg.format
1187
+ person^April_Gandert|template^application/vnd.pg.osasli
1188
+ person^Lucas_Maneos|template^application/vnd.piaccess.application-licence
1189
+ person^Giuseppe_Naccarato|template^application/vnd.picsel
1190
+ person^Rhys_Lewis|template^application/vnd.pmi.widget
1191
+ person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group^Sean_Kelley|template^application/vnd.poc.group-advertisement+xml
1192
+ person^Jorge_Pando|template^application/vnd.pocketlearn
1193
+ person^David_Guy|template^application/vnd.powerbuilder6
1194
+ person^David_Guy|template^application/vnd.powerbuilder6-s
1195
+ person^Reed_Shilts|template^application/vnd.powerbuilder7
1196
+ person^Reed_Shilts|template^application/vnd.powerbuilder7-s
1197
+ person^Reed_Shilts|template^application/vnd.powerbuilder75
1198
+ person^Reed_Shilts|template^application/vnd.powerbuilder75-s
1199
+ person^Juoko_Tenhunen|template^application/vnd.preminet
1200
+ person^Roman_Smolgovsky|template^application/vnd.previewsystems.box
1201
+ person^Pete_Hoch|template^application/vnd.proteus.magazine
1202
+ person^Kristopher_Durski|template^application/vnd.psfs
1203
+ person^Oren_Ben-Kiki|template^application/vnd.publishare-delta-tree
1204
+ person^Charles_P._Lamb|template^application/vnd.pvi.ptid1
1205
+ rfc^rfc3391|template^application/vnd.pwg-multiplexed
1206
+ person^Don_Wright|template^application/vnd.pwg-xhtml-print+xml
1207
+ person^Glenn_Forrester|template^application/vnd.qualcomm.brew-app-res
1208
+ person^Casper_Joost_Eyckelhof|template^application/vnd.quarantainenet
1209
+ person^Hannes_Scheidler|template^application/vnd.Quark.QuarkXPress
1210
+ person^Matthias_Ludwig|template^application/vnd.quobject-quoxdocument
1211
+ rfc^rfc5707|template^application/vnd.radisys.moml+xml
1212
+ rfc^rfc5707|template^application/vnd.radisys.msml+xml
1213
+ rfc^rfc5707|template^application/vnd.radisys.msml-audit+xml
1214
+ rfc^rfc5707|template^application/vnd.radisys.msml-audit-conf+xml
1215
+ rfc^rfc5707|template^application/vnd.radisys.msml-audit-conn+xml
1216
+ rfc^rfc5707|template^application/vnd.radisys.msml-audit-dialog+xml
1217
+ rfc^rfc5707|template^application/vnd.radisys.msml-audit-stream+xml
1218
+ rfc^rfc5707|template^application/vnd.radisys.msml-conf+xml
1219
+ rfc^rfc5707|template^application/vnd.radisys.msml-dialog+xml
1220
+ rfc^rfc5707|template^application/vnd.radisys.msml-dialog-base+xml
1221
+ rfc^rfc5707|template^application/vnd.radisys.msml-dialog-fax-detect+xml
1222
+ rfc^rfc5707|template^application/vnd.radisys.msml-dialog-fax-sendrecv+xml
1223
+ rfc^rfc5707|template^application/vnd.radisys.msml-dialog-group+xml
1224
+ rfc^rfc5707|template^application/vnd.radisys.msml-dialog-speech+xml
1225
+ rfc^rfc5707|template^application/vnd.radisys.msml-dialog-transform+xml
1226
+ person^Kevin_Crook|template^application/vnd.rainstor.data
1227
+ person^Etay_Szekely|template^application/vnd.rapid
1228
+ person^Kim_Scarborough|template^application/vnd.rar
1229
+ person^Nick_Reeves|template^application/vnd.realvnc.bed
1230
+ person^W3C_Music_Notation_Community_Group|template^application/vnd.recordare.musicxml
1231
+ person^W3C_Music_Notation_Community_Group|template^application/vnd.recordare.musicxml+xml
1232
+ person^James_Wick|template^application/vnd.RenLearn.rlprint
1233
+ person^Stephen_Mizell|template^application/vnd.restful+json
1234
+ person^Ken_Jibiki|template^application/vnd.rig.cryptonote
1235
+ -
1236
+ -
1237
+ -
1238
+ person^Sybren_Kikstra|template^application/vnd.route66.link66+xml
1239
+ person^Lee_Harding|template^application/vnd.rs-274x
1240
+ person^Jerry_Harris|template^application/vnd.ruckus.download
1241
+ person^Lauri_Tarkkala|template^application/vnd.s3sms
1242
+ person^Heikki_Vesalainen|template^application/vnd.sailingtracker.track
1243
+ person^Shinji_Kusakari|template^application/vnd.sbm.cid
1244
+ person^Masanori_Murai|template^application/vnd.sbm.mid2
1245
+ person^Craig_Bradney|template^application/vnd.scribus
1246
+ person^John_Kwan|template^application/vnd.sealed.3df
1247
+ person^John_Kwan|template^application/vnd.sealed.csf
1248
+ person^David_Petersen|template^application/vnd.sealed.doc
1249
+ person^David_Petersen|template^application/vnd.sealed.eml
1250
+ person^David_Petersen|template^application/vnd.sealed.mht
1251
+ person^Martin_Lambert|template^application/vnd.sealed.net
1252
+ person^David_Petersen|template^application/vnd.sealed.ppt
1253
+ person^John_Kwan^Martin_Lambert|template^application/vnd.sealed.tiff
1254
+ person^David_Petersen|template^application/vnd.sealed.xls
1255
+ person^David_Petersen|template^application/vnd.sealedmedia.softseal.html
1256
+ person^David_Petersen|template^application/vnd.sealedmedia.softseal.pdf
1257
+ person^Steve_Webb|template^application/vnd.seemail
1258
+ person^Anders_Hansson|template^application/vnd.sema
1259
+ person^Anders_Hansson|template^application/vnd.semd
1260
+ person^Anders_Hansson|template^application/vnd.semf
1261
+ person^Connor_Horman|template^application/vnd.shade-save-file
1262
+ person^Guy_Selzler|template^application/vnd.shana.informed.formdata
1263
+ person^Guy_Selzler|template^application/vnd.shana.informed.formtemplate
1264
+ person^Guy_Selzler|template^application/vnd.shana.informed.interchange
1265
+ person^Guy_Selzler|template^application/vnd.shana.informed.package
1266
+ person^Ben_Ramsey|template^application/vnd.shootproof+json
1267
+ person^Ronald_Jacobs|template^application/vnd.shopkick+json
1268
+ person^Uwe_Hermann|template^application/vnd.sigrok.session
1269
+ person^Patrick_Koh|template^application/vnd.SimTech-MindMapper
1270
+ person^Kevin_Swiber|template^application/vnd.siren+json
1271
+ person^Hiroaki_Takahashi|template^application/vnd.smaf
1272
+ person^Jonathan_Neitz|template^application/vnd.smart.notebook
1273
+ person^Michael_Boyle|template^application/vnd.smart.teacher
1274
+ person^Jakub_Hytka^Martin_Vondrous|template^application/vnd.software602.filler.form+xml
1275
+ person^Jakub_Hytka^Martin_Vondrous|template^application/vnd.software602.filler.form-xml-zip
1276
+ person^Cliff_Gauntlett|template^application/vnd.solent.sdkm+xml
1277
+ person^Stefan_Jernberg|template^application/vnd.spotfire.dxp
1278
+ person^Stefan_Jernberg|template^application/vnd.spotfire.sfs
1279
+ person^Clemens_Ladisch|template^application/vnd.sqlite3
1280
+ person^Asang_Dani|template^application/vnd.sss-cod
1281
+ person^Eric_Bruno|template^application/vnd.sss-dtf
1282
+ person^Eric_Bruno|template^application/vnd.sss-ntf
1283
+ -
1284
+ -
1285
+ -
1286
+ -
1287
+ -
1288
+ -
1289
+ -
1290
+ person^Henrik_Andersson|template^application/vnd.stepmania.package
1291
+ person^Henrik_Andersson|template^application/vnd.stepmania.stepchart
1292
+ person^Glenn_Levitt|template^application/vnd.street-stream
1293
+ person^Marc_Hadley|template^application/vnd.sun.wadl+xml
1294
+ -
1295
+ -
1296
+ -
1297
+ -
1298
+ -
1299
+ -
1300
+ -
1301
+ -
1302
+ -
1303
+ -
1304
+ person^Jonathan_Niedfeldt|template^application/vnd.sus-calendar
1305
+ person^Scott_Becker|template^application/vnd.svd
1306
+ person^Glenn_Widener|template^application/vnd.swiftview-ics
1307
+ -
1308
+ person^OMA_Data_Synchronization_Working_Group|template^application/vnd.syncml+xml
1309
+ person^OMA-DM_Work_Group|template^application/vnd.syncml.dm+wbxml
1310
+ person^Bindu_Rama_Rao^OMA-DM_Work_Group|template^application/vnd.syncml.dm+xml
1311
+ person^OMA-DM_Work_Group^Peter_Thompson|template^application/vnd.syncml.dm.notification
1312
+ person^OMA-DM_Work_Group|template^application/vnd.syncml.dmddf+wbxml
1313
+ person^OMA-DM_Work_Group|template^application/vnd.syncml.dmddf+xml
1314
+ person^OMA-DM_Work_Group|template^application/vnd.syncml.dmtnds+wbxml
1315
+ person^OMA-DM_Work_Group|template^application/vnd.syncml.dmtnds+xml
1316
+ person^OMA_Data_Synchronization_Working_Group|template^application/vnd.syncml.ds.notification
1317
+ person^Paul_Walsh|template^application/vnd.tableschema+json
1318
+ person^Daniel_Shelton|template^application/vnd.tao.intent-module-archive
1319
+ person^Glen_Turner^Guy_Harris|template^application/vnd.tcpdump.pcap
1320
+ person^Arno_Schoedl|template^application/vnd.think-cell.ppttc+json
1321
+ person^Alex_Sibilev|template^application/vnd.tmd.mediaflex.api+xml
1322
+ person^Joey_Smith|template^application/vnd.tml
1323
+ person^Nicolas_Helin|template^application/vnd.tmobile-livetv
1324
+ person^Rick_Rupp|template^application/vnd.tri.onesource
1325
+ person^Frank_Cusack|template^application/vnd.trid.tpt
1326
+ person^Steven_Simonoff|template^application/vnd.triscape.mxs
1327
+ person^J._Scott_Hepler|template^application/vnd.trueapp
1328
+ person^Brad_Chase|template^application/vnd.truedoc
1329
+ person^Martin_Talbot|template^application/vnd.ubisoft.webplayer
1330
+ person^Dave_Manning|template^application/vnd.ufdl
1331
+ person^Tim_Ocock|template^application/vnd.uiq.theme
1332
+ person^Jamie_Riden|template^application/vnd.umajin
1333
+ person^Unity3d|template^application/vnd.unity
1334
+ person^Arne_Gerdes|template^application/vnd.uoml+xml
1335
+ person^Bruce_Martin|template^application/vnd.uplanet.alert
1336
+ person^Bruce_Martin|template^application/vnd.uplanet.alert-wbxml
1337
+ person^Bruce_Martin|template^application/vnd.uplanet.bearer-choice
1338
+ person^Bruce_Martin|template^application/vnd.uplanet.bearer-choice-wbxml
1339
+ person^Bruce_Martin|template^application/vnd.uplanet.cacheop
1340
+ person^Bruce_Martin|template^application/vnd.uplanet.cacheop-wbxml
1341
+ person^Bruce_Martin|template^application/vnd.uplanet.channel
1342
+ person^Bruce_Martin|template^application/vnd.uplanet.channel-wbxml
1343
+ person^Bruce_Martin|template^application/vnd.uplanet.list
1344
+ person^Bruce_Martin|template^application/vnd.uplanet.list-wbxml
1345
+ person^Bruce_Martin|template^application/vnd.uplanet.listcmd
1346
+ person^Bruce_Martin|template^application/vnd.uplanet.listcmd-wbxml
1347
+ person^Bruce_Martin|template^application/vnd.uplanet.signal
1348
+ person^Sebastian_Baer|template^application/vnd.uri-map
1349
+ person^Henrik_Andersson|template^application/vnd.valve.source.material
1350
+ person^Taisuke_Sugimoto|template^application/vnd.vcx
1351
+ person^Luc_Rogge|template^application/vnd.vd-study
1352
+ person^Biplab_Sarkar^Lyndsey_Ferguson|template^application/vnd.vectorworks
1353
+ person^James_Wigger|template^application/vnd.vel+json
1354
+ person^Petr_Peterka|template^application/vnd.verimatrix.vcas
1355
+ person^Massimo_Bertoli|template^application/vnd.veryant.thin
1356
+ person^Jim_Zubov|template^application/vnd.ves.encrypted
1357
+ person^Robert_Hess|template^application/vnd.vidsoft.vidconference
1358
+ person^Troy_Sandal|template^application/vnd.visio
1359
+ person^Gayatri_Aravindakumar|template^application/vnd.visionary
1360
+ person^Mark_Risher|template^application/vnd.vividence.scriptfile
1361
+ person^Delton_Rowe|template^application/vnd.vsf
1362
+ person^WAP-Forum|template^application/vnd.wap.sic
1363
+ person^WAP-Forum|template^application/vnd.wap.slc
1364
+ person^Peter_Stark|template^application/vnd.wap.wbxml
1365
+ person^Peter_Stark|template^application/vnd.wap.wmlc
1366
+ person^Peter_Stark|template^application/vnd.wap.wmlscriptc
1367
+ person^Yaser_Rehem|template^application/vnd.webturbo
1368
+ person^Mick_Conley|template^application/vnd.wfa.p2p
1369
+ person^Wi-Fi_Alliance|template^application/vnd.wfa.wsc
1370
+ person^Priya_Dandawate|template^application/vnd.windows.devicepairing
1371
+ person^Thomas_Kjornes|template^application/vnd.wmc
1372
+ person^Prakash_Iyer^Thinh_Nguyenphu|template^application/vnd.wmf.bootstrap
1373
+ person^Wolfram|template^application/vnd.wolfram.mathematica
1374
+ person^Wolfram|template^application/vnd.wolfram.mathematica.package
1375
+ person^Wolfram|template^application/vnd.wolfram.player
1376
+ person^Kim_Scarborough|template^application/vnd.wordperfect
1377
+ person^Jan_Bostrom|template^application/vnd.wqd
1378
+ person^Chris_Bartram|template^application/vnd.wrq-hp3000-labelled
1379
+ person^Bill_Wohler|template^application/vnd.wt.stf
1380
+ person^Matti_Salmi|template^application/vnd.wv.csp+wbxml
1381
+ person^John_Ingi_Ingimundarson|template^application/vnd.wv.csp+xml
1382
+ person^John_Ingi_Ingimundarson|template^application/vnd.wv.ssp+xml
1383
+ person^David_Brossard|template^application/vnd.xacml+json
1384
+ person^David_Matthewman|template^application/vnd.xara
1385
+ person^Dave_Manning|template^application/vnd.xfdl
1386
+ person^Michael_Mansell|template^application/vnd.xfdl.webform
1387
+ person^Fred_Waskiewicz|template^application/vnd.xmi+xml
1388
+ person^Reuven_Sherwin|template^application/vnd.xmpie.cpkg
1389
+ person^Reuven_Sherwin|template^application/vnd.xmpie.dpkg
1390
+ person^Reuven_Sherwin|template^application/vnd.xmpie.plan
1391
+ person^Reuven_Sherwin|template^application/vnd.xmpie.ppkg
1392
+ person^Reuven_Sherwin|template^application/vnd.xmpie.xlim
1393
+ person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-dic
1394
+ person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-script
1395
+ person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-voice
1396
+ person^Mark_Olleson|template^application/vnd.yamaha.openscoreformat
1397
+ person^Mark_Olleson|template^application/vnd.yamaha.openscoreformat.osfpvg+xml
1398
+ person^Takehiro_Sukizaki|template^application/vnd.yamaha.remote-setup
1399
+ person^Keiichi_Shinoda|template^application/vnd.yamaha.smaf-audio
1400
+ person^Keiichi_Shinoda|template^application/vnd.yamaha.smaf-phrase
1401
+ person^Takehiro_Sukizaki|template^application/vnd.yamaha.through-ngn
1402
+ person^Takehiro_Sukizaki|template^application/vnd.yamaha.tunnel-udpencap
1403
+ person^Jens_Jorgensen|template^application/vnd.yaoweme
1404
+ person^Mr._Yellow|template^application/vnd.yellowriver-custom-menu
1405
+ notes^- OBSOLETED in favor of video/vnd.youtube.yt|person^Laura_Wood|template^application/vnd.youtube.yt
1406
+ person^Rene_Grothmann|template^application/vnd.zul
1407
+ person^Micheal_Hewett|template^application/vnd.zzazz.deck+xml
1408
+ rfc^rfc4267|template^application/voicexml+xml
1409
+ rfc^rfc8366|template^application/voucher-cms+json
1410
+ rfc^rfc6035|template^application/vq-rtcpxr
1411
+ template^application/wasm|uri^https://www.w3.org/TR/wasm-web-api-1/
1412
+ rfc^rfc3858|template^application/watcherinfo+xml
1413
+ rfc^rfc8292|template^application/webpush-options+json
1414
+ rfc^rfc2957|template^application/whoispp-query
1415
+ rfc^rfc2958|template^application/whoispp-response
1416
+ person^Steven_Pemberton^W3C|template^application/widget|uri^http://www.w3.org/TR/widgets/#media-type-registration-for-application/widget
1417
+ -
1418
+ person^Larry_Campbell|template^application/wita
1419
+ -
1420
+ -
1421
+ person^Paul_Lindner|template^application/wordperfect5.1
1422
+ -
1423
+ -
1424
+ person^W3C|template^application/wsdl+xml
1425
+ person^W3C|template^application/wspolicy+xml
1426
+ -
1427
+ -
1428
+ -
1429
+ -
1430
+ -
1431
+ -
1432
+ -
1433
+ -
1434
+ -
1435
+ -
1436
+ -
1437
+ -
1438
+ -
1439
+ -
1440
+ -
1441
+ -
1442
+ -
1443
+ -
1444
+ -
1445
+ -
1446
+ -
1447
+ -
1448
+ -
1449
+ -
1450
+ -
1451
+ -
1452
+ -
1453
+ -
1454
+ -
1455
+ -
1456
+ -
1457
+ -
1458
+ -
1459
+ -
1460
+ -
1461
+ -
1462
+ -
1463
+ -
1464
+ -
1465
+ -
1466
+ -
1467
+ -
1468
+ -
1469
+ -
1470
+ -
1471
+ -
1472
+ -
1473
+ -
1474
+ -
1475
+ -
1476
+ -
1477
+ -
1478
+ -
1479
+ -
1480
+ -
1481
+ -
1482
+ -
1483
+ -
1484
+ -
1485
+ -
1486
+ -
1487
+ -
1488
+ -
1489
+ -
1490
+ -
1491
+ -
1492
+ -
1493
+ -
1494
+ -
1495
+ -
1496
+ -
1497
+ -
1498
+ -
1499
+ -
1500
+ -
1501
+ -
1502
+ -
1503
+ -
1504
+ -
1505
+ -
1506
+ -
1507
+ -
1508
+ -
1509
+ -
1510
+ -
1511
+ -
1512
+ -
1513
+ -
1514
+ -
1515
+ -
1516
+ -
1517
+ -
1518
+ -
1519
+ -
1520
+ -
1521
+ -
1522
+ -
1523
+ -
1524
+ -
1525
+ -
1526
+ -
1527
+ -
1528
+ -
1529
+ -
1530
+ -
1531
+ -
1532
+ -
1533
+ -
1534
+ -
1535
+ -
1536
+ -
1537
+ -
1538
+ -
1539
+ -
1540
+ -
1541
+ -
1542
+ -
1543
+ -
1544
+ -
1545
+ -
1546
+ -
1547
+ -
1548
+ -
1549
+ -
1550
+ -
1551
+ -
1552
+ -
1553
+ -
1554
+ -
1555
+ -
1556
+ -
1557
+ -
1558
+ -
1559
+ -
1560
+ -
1561
+ -
1562
+ -
1563
+ -
1564
+ -
1565
+ -
1566
+ -
1567
+ -
1568
+ -
1569
+ -
1570
+ -
1571
+ -
1572
+ -
1573
+ -
1574
+ -
1575
+ -
1576
+ -
1577
+ -
1578
+ -
1579
+ -
1580
+ -
1581
+ -
1582
+ -
1583
+ -
1584
+ -
1585
+ -
1586
+ -
1587
+ -
1588
+ -
1589
+ -
1590
+ -
1591
+ -
1592
+ -
1593
+ person^Robin_Berjon^W3C|template^application/x-www-form-urlencoded
1594
+ -
1595
+ -
1596
+ -
1597
+ -
1598
+ -
1599
+ -
1600
+ rfc^rfc1494|template^application/x400-bp
1601
+ -
1602
+ rfc^rfc7061|template^application/xacml+xml
1603
+ -
1604
+ rfc^rfc4825|template^application/xcap-att+xml
1605
+ rfc^rfc4825|template^application/xcap-caps+xml
1606
+ rfc^rfc5874|template^application/xcap-diff+xml
1607
+ rfc^rfc4825|template^application/xcap-el+xml
1608
+ rfc^rfc4825|template^application/xcap-error+xml
1609
+ rfc^rfc4825|template^application/xcap-ns+xml
1610
+ rfc^rfc6502|template^application/xcon-conference-info+xml
1611
+ rfc^rfc6502|template^application/xcon-conference-info-diff+xml
1612
+ person^Joseph_Reagle^XENC_Working_Group|template^application/xenc+xml
1613
+ person^Robin_Berjon^W3C|template^application/xhtml+xml
1614
+ draft^draft-mccobb-xplusv-media-type|notes^- OBSOLETE; no replacement given|template^application/xhtml-voice+xml
1615
+ person^Chet_Ensign^OASIS|template^application/xliff+xml
1616
+ rfc^rfc7303|template^application/xml
1617
+ rfc^rfc7303|template^application/xml-dtd
1618
+ rfc^rfc7303|template^application/xml-external-parsed-entity
1619
+ rfc^rfc7351|template^application/xml-patch+xml
1620
+ rfc^rfc3923|template^application/xmpp+xml
1621
+ person^Mark_Nottingham|template^application/xop+xml
1622
+ -
1623
+ person^W3C|uri^http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration
1624
+ -
1625
+ rfc^rfc4374|template^application/xv+xml
1626
+ rfc^rfc6020|template^application/yang
1627
+ rfc^rfc8040|template^application/yang-data+json
1628
+ rfc^rfc8040|template^application/yang-data+xml
1629
+ rfc^rfc8072|template^application/yang-patch+json
1630
+ rfc^rfc8072|template^application/yang-patch+xml
1631
+ rfc^rfc6020|template^application/yin+xml
1632
+ person^Paul_Lindner|template^application/zip
1633
+ rfc^rfc6713|template^application/zlib
1634
+ rfc^rfc8478|template^application/zstd
1635
+ rfc^rfc6015|template^audio/1d-interleaved-parityfec
1636
+ rfc^rfc2421^rfc3802|template^audio/32kadpcm
1637
+ rfc^rfc3839^rfc6381|template^audio/3gpp
1638
+ rfc^rfc4393^rfc6381|template^audio/3gpp2
1639
+ person^ISO-IEC_JTC1^Max_Neuendorf|template^audio/aac
1640
+ rfc^rfc4184|template^audio/ac3
1641
+ -
1642
+ rfc^rfc4867|template^audio/AMR
1643
+ rfc^rfc4867|template^audio/AMR-WB
1644
+ rfc^rfc4352|template^audio/amr-wb+
1645
+ rfc^rfc7310|template^audio/aptx
1646
+ rfc^rfc6295|template^audio/asc
1647
+ rfc^rfc5584|template^audio/ATRAC-ADVANCED-LOSSLESS
1648
+ rfc^rfc5584|template^audio/ATRAC-X
1649
+ rfc^rfc5584|template^audio/ATRAC3
1650
+ rfc^rfc2045^rfc2046|template^audio/basic
1651
+ rfc^rfc4298|template^audio/BV16
1652
+ rfc^rfc4298|template^audio/BV32
1653
+ rfc^rfc4040|template^audio/clearmode
1654
+ rfc^rfc3389|template^audio/CN
1655
+ rfc^rfc3190|template^audio/DAT12
1656
+ rfc^rfc4613|template^audio/dls
1657
+ rfc^rfc3557|template^audio/dsr-es201108
1658
+ rfc^rfc4060|template^audio/dsr-es202050
1659
+ rfc^rfc4060|template^audio/dsr-es202211
1660
+ rfc^rfc4060|template^audio/dsr-es202212
1661
+ rfc^rfc6469|template^audio/DV
1662
+ rfc^rfc4856|template^audio/DVI4
1663
+ rfc^rfc4598|template^audio/eac3
1664
+ rfc^rfc6849|template^audio/encaprtp
1665
+ rfc^rfc4788|template^audio/EVRC
1666
+ rfc^rfc3625|template^audio/EVRC-QCP
1667
+ rfc^rfc4788|template^audio/EVRC0
1668
+ rfc^rfc4788|template^audio/EVRC1
1669
+ rfc^rfc5188|template^audio/EVRCB
1670
+ rfc^rfc5188|template^audio/EVRCB0
1671
+ rfc^rfc4788|template^audio/EVRCB1
1672
+ rfc^rfc6884|template^audio/EVRCNW
1673
+ rfc^rfc6884|template^audio/EVRCNW0
1674
+ rfc^rfc6884|template^audio/EVRCNW1
1675
+ rfc^rfc5188|template^audio/EVRCWB
1676
+ rfc^rfc5188|template^audio/EVRCWB0
1677
+ rfc^rfc5188|template^audio/EVRCWB1
1678
+ person^Kyunghun_Jung^_3GPP|template^audio/EVS
1679
+ rfc^rfc4735|template^audio/example
1680
+ rfc^rfc8627|template^audio/flexfec
1681
+ rfc^rfc6354|template^audio/fwdred
1682
+ rfc^rfc7655|template^audio/G711-0
1683
+ rfc^rfc5404|rfc-errata^3245|template^audio/G719
1684
+ rfc^rfc4856|template^audio/G722
1685
+ rfc^rfc5577|template^audio/G7221
1686
+ rfc^rfc4856|template^audio/G723
1687
+ rfc^rfc4856|template^audio/G726-16
1688
+ rfc^rfc4856|template^audio/G726-24
1689
+ rfc^rfc4856|template^audio/G726-32
1690
+ rfc^rfc4856|template^audio/G726-40
1691
+ rfc^rfc4856|template^audio/G728
1692
+ rfc^rfc4856|template^audio/G729
1693
+ rfc^rfc4749^rfc5459
1694
+ rfc^rfc4856|template^audio/G729D
1695
+ rfc^rfc4856|template^audio/G729E
1696
+ rfc^rfc4856|template^audio/GSM
1697
+ rfc^rfc4856|template^audio/GSM-EFR
1698
+ rfc^rfc5993|template^audio/GSM-HR-08
1699
+ rfc^rfc3952|template^audio/iLBC
1700
+ rfc^rfc6262|template^audio/ip-mr_v2.5
1701
+ rfc^rfc4856|template^audio/L16
1702
+ rfc^rfc3190|template^audio/L20
1703
+ rfc^rfc3190|template^audio/L24
1704
+ rfc^rfc4856|template^audio/L8
1705
+ rfc^rfc4856|template^audio/LPC
1706
+ rfc^rfc8130|template^audio/MELP
1707
+ rfc^rfc8130|template^audio/MELP1200
1708
+ rfc^rfc8130|template^audio/MELP2400
1709
+ rfc^rfc8130|template^audio/MELP600
1710
+ -
1711
+ rfc^rfc4723|template^audio/mobile-xmf
1712
+ rfc^rfc4337^rfc6381|template^audio/mp4
1713
+ rfc^rfc6416|template^audio/MP4A-LATM
1714
+ rfc^rfc3555|template^audio/MPA
1715
+ rfc^rfc5219|template^audio/mpa-robust
1716
+ rfc^rfc3003|template^audio/mpeg
1717
+ rfc^rfc3640^rfc5691^rfc6295|template^audio/mpeg4-generic
1718
+ rfc^rfc5334^rfc7845|template^audio/ogg
1719
+ rfc^rfc7587|template^audio/opus
1720
+ rfc^rfc5109
1721
+ rfc^rfc4856|template^audio/PCMA
1722
+ rfc^rfc5391|template^audio/PCMA-WB
1723
+ rfc^rfc4856|template^audio/PCMU
1724
+ rfc^rfc5391|template^audio/PCMU-WB
1725
+ person^Linus_Walleij|template^audio/prs.sid
1726
+ rfc^rfc3555^rfc3625
1727
+ rfc^rfc6682|template^audio/raptorfec
1728
+ rfc^rfc3555|template^audio/RED
1729
+ person^_3GPP|template^audio/rtp-enc-aescm128
1730
+ rfc^rfc6295|template^audio/rtp-midi
1731
+ rfc^rfc6849|template^audio/rtploopback
1732
+ rfc^rfc4588|template^audio/rtx
1733
+ -
1734
+ -
1735
+ rfc^rfc3558|template^audio/SMV
1736
+ rfc^rfc3625|template^audio/SMV-QCP
1737
+ rfc^rfc3558|template^audio/SMV0
1738
+ person^Timo_Kosonen^Tom_White|template^audio/sp-midi
1739
+ rfc^rfc5574|template^audio/speex
1740
+ rfc^rfc4351|template^audio/t140c
1741
+ rfc^rfc4612|template^audio/t38
1742
+ rfc^rfc4733|template^audio/telephone-event
1743
+ person^ETSI^Miguel_Angel_Reina_Ortega|template^audio/TETRA_ACELP
1744
+ rfc^rfc4733|template^audio/tone
1745
+ rfc^rfc5686|template^audio/UEMCLIP
1746
+ rfc^rfc5109|template^audio/ulpfec
1747
+ person^ISO-IEC_JTC1^Max_Neuendorf|template^audio/usac
1748
+ rfc^rfc4856|template^audio/VDVI
1749
+ rfc^rfc4348^rfc4424|template^audio/VMR-WB
1750
+ person^Thomas_Belling|template^audio/vnd.3gpp.iufp
1751
+ person^Serge_De_Jaham|template^audio/vnd.4SB
1752
+ person^Vicki_DeBarros|template^audio/vnd.audiokoz
1753
+ person^Serge_De_Jaham|template^audio/vnd.CELP
1754
+ person^Rajesh_Kumar|template^audio/vnd.cisco.nse
1755
+ person^Jean-Philippe_Goulet|template^audio/vnd.cmles.radio-events
1756
+ person^Ann_McLaughlin|template^audio/vnd.cns.anp1
1757
+ person^Ann_McLaughlin|template^audio/vnd.cns.inf1
1758
+ person^Michael_A_Dolan|template^audio/vnd.dece.audio
1759
+ person^Armands_Strazds|template^audio/vnd.digital-winds
1760
+ person^Edwin_Heredia|template^audio/vnd.dlna.adts
1761
+ person^Steve_Hattersley|template^audio/vnd.dolby.heaac.1
1762
+ person^Steve_Hattersley|template^audio/vnd.dolby.heaac.2
1763
+ person^Mike_Ward|template^audio/vnd.dolby.mlp
1764
+ person^Steve_Hattersley|template^audio/vnd.dolby.mps
1765
+ person^Steve_Hattersley|template^audio/vnd.dolby.pl2
1766
+ person^Steve_Hattersley|template^audio/vnd.dolby.pl2x
1767
+ person^Steve_Hattersley|template^audio/vnd.dolby.pl2z
1768
+ person^Steve_Hattersley|template^audio/vnd.dolby.pulse.1
1769
+ person^Jiang_Tian|template^audio/vnd.dra
1770
+ person^William_Zou|template^audio/vnd.dts
1771
+ person^William_Zou|template^audio/vnd.dts.hd
1772
+ person^Phillip_Maness|template^audio/vnd.dts.uhd
1773
+ person^Peter_Siebert|template^audio/vnd.dvb.file
1774
+ person^Shay_Cicelsky|template^audio/vnd.everad.plj
1775
+ person^Swaminathan|template^audio/vnd.hns.audio
1776
+ person^Greg_Vaudreuil|template^audio/vnd.lucent.voice
1777
+ person^Steve_DiAcetis|template^audio/vnd.ms-playready.media.pya
1778
+ person^Nokia|template^audio/vnd.nokia.mobile-xmf
1779
+ person^Glenn_Parsons|template^audio/vnd.nortel.vbk
1780
+ person^Michael_Fox|template^audio/vnd.nuera.ecelp4800
1781
+ person^Michael_Fox|template^audio/vnd.nuera.ecelp7470
1782
+ person^Michael_Fox|template^audio/vnd.nuera.ecelp9600
1783
+ person^Greg_Vaudreuil|template^audio/vnd.octel.sbc
1784
+ person^Matthias_Juwan|template^audio/vnd.presonus.multitrack
1785
+ notes^- DEPRECATED in favor of audio/qcelp|rfc^rfc3625|template^audio/vnd.qcelp
1786
+ person^Greg_Vaudreuil|template^audio/vnd.rhetorex.32kadpcm
1787
+ person^Martin_Dawe|template^audio/vnd.rip
1788
+ person^David_Petersen|template^audio/vnd.sealedmedia.softseal.mpeg
1789
+ person^Greg_Vaudreuil|template^audio/vnd.vmx.cvsd
1790
+ rfc^rfc5215|template^audio/vorbis
1791
+ rfc^rfc5215|template^audio/vorbis-config
1792
+ -
1793
+ -
1794
+ -
1795
+ -
1796
+ -
1797
+ -
1798
+ -
1799
+ -
1800
+ -
1801
+ -
1802
+ -
1803
+ -
1804
+ -
1805
+ -
1806
+ -
1807
+ -
1808
+ -
1809
+ -
1810
+ -
1811
+ -
1812
+ -
1813
+ -
1814
+ -
1815
+ -
1816
+ rfc^rfc8081|template^font/collection
1817
+ rfc^rfc8081|template^font/otf
1818
+ rfc^rfc8081|template^font/sfnt
1819
+ rfc^rfc8081|template^font/ttf
1820
+ rfc^rfc8081|template^font/woff
1821
+ rfc^rfc8081|template^font/woff2
1822
+ person^Howard_Lukk^SMPTE|template^image/aces
1823
+ person^David_Singer^ISO-IEC_JTC1|template^image/avci
1824
+ person^David_Singer^ISO-IEC_JTC1|template^image/avcs
1825
+ rfc^rfc7903|template^image/bmp
1826
+ person^Alan_Francis|template^image/cgm
1827
+ -
1828
+ person^DICOM_Standards_Committee^David_Clunie|template^image/dicom-rle
1829
+ rfc^rfc7903|template^image/emf
1830
+ rfc^rfc4735|template^image/example
1831
+ rfc^rfc4047|template^image/fits
1832
+ rfc^rfc1494|template^image/g3fax
1833
+ rfc^rfc2045^rfc2046
1834
+ person^David_Singer^ISO-IEC_JTC1|template^image/heic
1835
+ person^David_Singer^ISO-IEC_JTC1|template^image/heic-sequence
1836
+ person^David_Singer^ISO-IEC_JTC1|template^image/heif
1837
+ person^David_Singer^ISO-IEC_JTC1|template^image/heif-sequence
1838
+ person^ISO-IEC_JTC1^ITU-T|template^image/hej2k
1839
+ person^ISO-IEC_JTC1^ITU-T|template^image/hsj2
1840
+ rfc^rfc1314
1841
+ person^DICOM_Standards_Committee^David_Clunie|template^image/jls
1842
+ rfc^rfc3745|template^image/jp2
1843
+ rfc^rfc2045^rfc2046
1844
+ person^ISO-IEC_JTC1^ITU-T|template^image/jph
1845
+ person^ISO-IEC_JTC1^ITU-T|template^image/jphc
1846
+ rfc^rfc3745|template^image/jpm
1847
+ rfc^rfc3745|template^image/jpx
1848
+ person^ISO-IEC_JTC1^ITU-T|template^image/jxr
1849
+ person^ISO-IEC_JTC1^ITU-T|template^image/jxrA
1850
+ person^ISO-IEC_JTC1^ITU-T|template^image/jxrS
1851
+ person^ISO-IEC_JTC1|template^image/jxs
1852
+ person^ISO-IEC_JTC1|template^image/jxsc
1853
+ person^ISO-IEC_JTC1|template^image/jxsi
1854
+ person^ISO-IEC_JTC1|template^image/jxss
1855
+ person^Khronos^Mark_Callow|uri^http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration
1856
+ person^Ilya_Ferber|template^image/naplps
1857
+ -
1858
+ person^Glenn_Randers-Pehrson|template^image/png
1859
+ person^Ben_Simon|template^image/prs.btif
1860
+ person^Juern_Laun|template^image/prs.pti
1861
+ person^Michael_Sweet|template^image/pwg-raster
1862
+ -
1863
+ person^W3C|uri^http://www.w3.org/TR/SVG/mimereg.html
1864
+ rfc^rfc3362|template^image/t38
1865
+ -
1866
+ rfc^rfc3302|template^image/tiff
1867
+ rfc^rfc3950|template^image/tiff-fx
1868
+ person^Kim_Scarborough|template^image/vnd.adobe.photoshop
1869
+ person^Gary_Clueit|template^image/vnd.airzip.accelerator.azv
1870
+ person^Ann_McLaughlin|template^image/vnd.cns.inf2
1871
+ person^Michael_A_Dolan|template^image/vnd.dece.graphic
1872
+ -
1873
+ person^Leon_Bottou|template^image/vnd.djvu
1874
+ person^Michael_Lagally^Peter_Siebert|template^image/vnd.dvb.subtitle
1875
+ person^Jodi_Moline|template^image/vnd.dwg
1876
+ person^Jodi_Moline|template^image/vnd.dxf
1877
+ person^Scott_Becker|template^image/vnd.fastbidsheet
1878
+ person^Marc_Douglas_Spencer|template^image/vnd.fpx
1879
+ person^Arild_Fuldseth|template^image/vnd.fst
1880
+ person^Masanori_Onda|template^image/vnd.fujixerox.edmics-mmr
1881
+ person^Masanori_Onda|template^image/vnd.fujixerox.edmics-rlc
1882
+ person^Martin_Bailey|template^image/vnd.globalgraphics.pgb
1883
+ person^Simon_Butcher|template^image/vnd.microsoft.icon
1884
+ person^Saveen_Reddy|template^image/vnd.mix
1885
+ person^Stuart_Parmenter|template^image/vnd.mozilla.apng
1886
+ person^Gregory_Vaughan|template^image/vnd.ms-modi
1887
+ -
1888
+ person^Marc_Douglas_Spencer|template^image/vnd.net-fpx
1889
+ -
1890
+ person^Greg_Ward^Randolph_Fritz|template^image/vnd.radiance
1891
+ person^David_Petersen|template^image/vnd.sealed.png
1892
+ person^David_Petersen|template^image/vnd.sealedmedia.softseal.gif
1893
+ person^David_Petersen|template^image/vnd.sealedmedia.softseal.jpg
1894
+ person^Jodi_Moline|template^image/vnd.svf
1895
+ person^Ni_Hui|template^image/vnd.tencent.tap
1896
+ person^Henrik_Andersson|template^image/vnd.valve.source.texture
1897
+ person^Peter_Stark|template^image/vnd.wap.wbmp
1898
+ person^Steven_Martin|template^image/vnd.xiff
1899
+ person^Chris_Charabaruk|template^image/vnd.zbrush.pcx
1900
+ -
1901
+ rfc^rfc7903|template^image/wmf
1902
+ -
1903
+ -
1904
+ -
1905
+ -
1906
+ -
1907
+ notes^- DEPRECATED in favor of image/emf|rfc^rfc7903|template^image/emf
1908
+ -
1909
+ -
1910
+ -
1911
+ -
1912
+ -
1913
+ -
1914
+ -
1915
+ -
1916
+ -
1917
+ -
1918
+ -
1919
+ -
1920
+ -
1921
+ -
1922
+ -
1923
+ -
1924
+ -
1925
+ notes^- DEPRECATED in favor of image/wmf|rfc^rfc7903|template^image/wmf
1926
+ -
1927
+ -
1928
+ -
1929
+ -
1930
+ -
1931
+ rfc^rfc3862|template^message/CPIM
1932
+ rfc^rfc1894|template^message/delivery-status
1933
+ rfc^rfc8098|template^message/disposition-notification
1934
+ rfc^rfc4735|template^message/example
1935
+ rfc^rfc2045^rfc2046
1936
+ rfc^rfc5965|template^message/feedback-report
1937
+ rfc^rfc6532|template^message/global
1938
+ rfc^rfc6533|template^message/global-delivery-status
1939
+ rfc^rfc6533|template^message/global-disposition-notification
1940
+ rfc^rfc6533|template^message/global-headers
1941
+ rfc^rfc7230|template^message/http
1942
+ rfc^rfc5438|template^message/imdn+xml
1943
+ notes^- OBSOLETED by RFC5537|person^Henry_Spencer|rfc^rfc5537|template^message/news
1944
+ rfc^rfc2045^rfc2046
1945
+ rfc^rfc2045^rfc2046
1946
+ rfc^rfc2660|template^message/s-http
1947
+ rfc^rfc3261|template^message/sip
1948
+ rfc^rfc3420|template^message/sipfrag
1949
+ rfc^rfc3886|template^message/tracking-status
1950
+ notes^- OBSOLETED by request|person^Nicholas_Parks_Young|template^message/vnd.si.simp
1951
+ person^Mick_Conley|template^message/vnd.wfa.wsc
1952
+ person^Michael_Sweet^_3MF|template^model/3mf|uri^http://www.3mf.io/specification
1953
+ rfc^rfc4735|template^model/example
1954
+ person^Khronos^Uli_Klumpp|template^model/gltf+json
1955
+ person^Khronos^Saurabh_Bhatia|template^model/gltf-binary
1956
+ person^Curtis_Parks|template^model/iges
1957
+ rfc^rfc2077
1958
+ person^DICOM_Standards_Committee^Lisa_Spellman|template^model/stl
1959
+ person^James_Riordon|template^model/vnd.collada+xml
1960
+ person^Jason_Pratt|template^model/vnd.dwf
1961
+ person^Michael_Powers|template^model/vnd.flatland.3dml
1962
+ person^Attila_Babits|template^model/vnd.gdl
1963
+ person^Attila_Babits|template^model/vnd.gs-gdl
1964
+ person^Yutaka_Ozaki|template^model/vnd.gtw
1965
+ person^Christopher_Brooks|template^model/vnd.moml+xml
1966
+ person^Boris_Rabinovitch|template^model/vnd.mts
1967
+ person^Eric_Lengyel|template^model/vnd.opengex
1968
+ person^Parasolid|template^model/vnd.parasolid.transmit.binary
1969
+ person^Parasolid|template^model/vnd.parasolid.transmit.text
1970
+ person^Benson_Margulies|template^model/vnd.rosette.annotated-data-model
1971
+ person^Sebastian_Grassia|template^model/vnd.usdz+zip
1972
+ person^Henrik_Andersson|template^model/vnd.valve.source.compiled-map
1973
+ person^Boris_Rabinovitch|template^model/vnd.vtu
1974
+ rfc^rfc2077
1975
+ -
1976
+ person^Web3D_X3D|template^model/x3d+fastinfoset
1977
+ -
1978
+ person^Web3D^Web3D_X3D|template^model/x3d+xml
1979
+ person^Web3D^Web3D_X3D|template^model/x3d-vrml
1980
+ rfc^rfc2045^rfc2046
1981
+ person^Patrik_Faltstrom|template^multipart/appledouble
1982
+ rfc^rfc7233|template^multipart/byteranges
1983
+ rfc^rfc2045^rfc2046
1984
+ rfc^rfc1847|template^multipart/encrypted
1985
+ rfc^rfc4735|template^multipart/example
1986
+ rfc^rfc7578|template^multipart/form-data
1987
+ person^Dave_Crocker|template^multipart/header-set
1988
+ rfc^rfc2045^rfc2046
1989
+ rfc^rfc8255|template^multipart/multilingual
1990
+ rfc^rfc2045^rfc2046
1991
+ rfc^rfc2387|template^multipart/related
1992
+ rfc^rfc6522|template^multipart/report
1993
+ rfc^rfc1847|template^multipart/signed
1994
+ person^Heinz-Peter_Schütz|template^multipart/vnd.bint.med-plus
1995
+ rfc^rfc3801|template^multipart/voice-message
1996
+ -
1997
+ person^Robin_Berjon^W3C|template^multipart/x-mixed-replace
1998
+ -
1999
+ -
2000
+ -
2001
+ -
2002
+ -
2003
+ rfc^rfc6015|template^text/1d-interleaved-parityfec
2004
+ person^Robin_Berjon^W3C|template^text/cache-manifest
2005
+ rfc^rfc5545|template^text/calendar
2006
+ -
2007
+ rfc^rfc2318|template^text/css
2008
+ rfc^rfc4180^rfc7111|template^text/csv
2009
+ person^David_Underdown^National_Archives_UK|template^text/csv-schema
2010
+ notes^- DEPRECATED by RFC6350|rfc^rfc2425^rfc6350|template^text/directory
2011
+ rfc^rfc4027|template^text/dns
2012
+ notes^- OBSOLETED in favor of application/ecmascript|rfc^rfc4329|template^text/ecmascript
2013
+ rfc^rfc6849|template^text/encaprtp
2014
+ rfc^rfc1896
2015
+ rfc^rfc4735|template^text/example
2016
+ rfc^rfc8627|template^text/flexfec
2017
+ rfc^rfc6354|template^text/fwdred
2018
+ rfc^rfc6787|template^text/grammar-ref-list
2019
+ person^Robin_Berjon^W3C|template^text/html
2020
+ notes^- OBSOLETED in favor of application/javascript|rfc^rfc4329|template^text/javascript
2021
+ person^Peeter_Piegaze|template^text/jcr-cnd
2022
+ rfc^rfc7763|template^text/markdown
2023
+ person^Jesse_Alama|template^text/mizar
2024
+ person^Eric_Prudhommeaux^W3C|template^text/n3
2025
+ rfc^rfc7826|template^text/parameters
2026
+ rfc^rfc5109
2027
+ rfc^rfc2046^rfc3676^rfc5147
2028
+ person^Ivan_Herman^W3C|template^text/provenance-notation
2029
+ person^Benja_Fallenstein|template^text/prs.fallenstein.rst
2030
+ person^John_Lines|template^text/prs.lines.tag
2031
+ person^Hans-Dieter_A._Hiep|template^text/prs.prop.logic
2032
+ rfc^rfc6682|template^text/raptorfec
2033
+ rfc^rfc4102|template^text/RED
2034
+ rfc^rfc6522|template^text/rfc822-headers
2035
+ rfc^rfc2045^rfc2046
2036
+ person^Paul_Lindner|template^text/rtf
2037
+ person^_3GPP|template^text/rtp-enc-aescm128
2038
+ rfc^rfc6849|template^text/rtploopback
2039
+ rfc^rfc4588|template^text/rtx
2040
+ rfc^rfc1874|template^text/sgml
2041
+ person^IEEE-ISTO-PWG-PPP|template^text/strings
2042
+ rfc^rfc4103|template^text/t140
2043
+ person^Paul_Lindner|template^text/tab-separated-values
2044
+ rfc^rfc4263|template^text/troff
2045
+ person^Eric_Prudhommeaux^W3C|template^text/turtle
2046
+ rfc^rfc5109|template^text/ulpfec
2047
+ rfc^rfc2483|template^text/uri-list
2048
+ rfc^rfc6350|template^text/vcard
2049
+ person^Regis_Dehoux|template^text/vnd.a
2050
+ person^Steve_Allen|template^text/vnd.abc
2051
+ person^Kim_Scarborough|template^text/vnd.ascii-art
2052
+ person^Robert_Byrnes|template^text/vnd.curl
2053
+ -
2054
+ -
2055
+ -
2056
+ person^Charles_Plessy|template^text/vnd.debian.copyright
2057
+ person^Dan_Bradley|template^text/vnd.DMClientScript
2058
+ person^Michael_Lagally^Peter_Siebert|template^text/vnd.dvb.subtitle
2059
+ person^Stefan_Eilemann|template^text/vnd.esmertec.theme-descriptor
2060
+ person^Steve_Gilberd|template^text/vnd.ficlab.flt
2061
+ -
2062
+ person^John-Mark_Gurney|template^text/vnd.fly
2063
+ person^Kari_E._Hurtta|template^text/vnd.fmi.flexstor
2064
+ person^Mi_Tar|template^text/vnd.gml
2065
+ person^John_Ellson|template^text/vnd.graphviz
2066
+ person^Heungsub_Lee|template^text/vnd.hgl
2067
+ person^Michael_Powers|template^text/vnd.in3d.3dml
2068
+ person^Michael_Powers|template^text/vnd.in3d.spot
2069
+ person^IPTC|template^text/vnd.IPTC.NewsML
2070
+ person^IPTC|template^text/vnd.IPTC.NITF
2071
+ person^Mikusiak_Lubos|template^text/vnd.latex-z
2072
+ person^Mark_Patton|template^text/vnd.motorola.reflex
2073
+ person^Jan_Nelson|template^text/vnd.ms-mediapackage
2074
+ person^Feiyu_Xie|template^text/vnd.net2phone.commcenter.command
2075
+ rfc^rfc5707|template^text/vnd.radisys.msml-basic-layout
2076
+ person^Pierre_Papin|template^text/vnd.senx.warpscript
2077
+ notes^- OBSOLETED by request|person^Nicholas_Parks_Young|template^text/vnd.si.uricatalogue
2078
+ person^Petter_Reinholdtsen|template^text/vnd.sosi
2079
+ person^Gary_Adams|template^text/vnd.sun.j2me.app-descriptor
2080
+ person^David_Lee_Lambert|template^text/vnd.trolltech.linguist
2081
+ person^WAP-Forum|template^text/vnd.wap.si
2082
+ person^WAP-Forum|template^text/vnd.wap.sl
2083
+ person^Peter_Stark|template^text/vnd.wap.wml
2084
+ person^Peter_Stark|template^text/vnd.wap.wmlscript
2085
+ -
2086
+ -
2087
+ -
2088
+ -
2089
+ -
2090
+ -
2091
+ -
2092
+ -
2093
+ -
2094
+ -
2095
+ -
2096
+ -
2097
+ -
2098
+ -
2099
+ -
2100
+ -
2101
+ -
2102
+ rfc^rfc7303|template^text/xml
2103
+ rfc^rfc7303|template^text/xml-external-parsed-entity
2104
+ rfc^rfc6015|template^video/1d-interleaved-parityfec
2105
+ rfc^rfc3839^rfc6381|template^video/3gpp
2106
+ rfc^rfc4396|template^video/3gpp-tt
2107
+ rfc^rfc4393^rfc6381|template^video/3gpp2
2108
+ rfc^rfc3555|template^video/BMPEG
2109
+ rfc^rfc3555|template^video/BT656
2110
+ rfc^rfc3555|template^video/CelB
2111
+ -
2112
+ rfc^rfc6469|template^video/DV
2113
+ rfc^rfc6849|template^video/encaprtp
2114
+ rfc^rfc4735|template^video/example
2115
+ rfc^rfc8627|template^video/flexfec
2116
+ -
2117
+ rfc^rfc4587|template^video/H261
2118
+ rfc^rfc3555|template^video/H263
2119
+ rfc^rfc4629|template^video/H263-1998
2120
+ rfc^rfc4629|template^video/H263-2000
2121
+ rfc^rfc6184|template^video/H264
2122
+ rfc^rfc6185|template^video/H264-RCDO
2123
+ rfc^rfc6190|template^video/H264-SVC
2124
+ rfc^rfc7798|template^video/H265
2125
+ person^David_Singer^ISO-IEC_JTC1|template^video/iso.segment
2126
+ rfc^rfc3555|template^video/JPEG
2127
+ rfc^rfc5371^rfc5372|template^video/jpeg2000
2128
+ -
2129
+ rfc^rfc3745|template^video/mj2
2130
+ rfc^rfc3555|template^video/MP1S
2131
+ rfc^rfc3555|template^video/MP2P
2132
+ rfc^rfc3555|template^video/MP2T
2133
+ rfc^rfc4337^rfc6381|template^video/mp4
2134
+ rfc^rfc6416|template^video/MP4V-ES
2135
+ rfc^rfc2045^rfc2046
2136
+ rfc^rfc3640|template^video/mpeg4-generic
2137
+ rfc^rfc3555|template^video/MPV
2138
+ rfc^rfc4856|template^video/nv
2139
+ rfc^rfc5334^rfc7845|template^video/ogg
2140
+ rfc^rfc5109
2141
+ rfc^rfc2862|template^video/pointer
2142
+ person^Paul_Lindner|rfc^rfc6381|template^video/quicktime
2143
+ rfc^rfc6682|template^video/raptorfec
2144
+ rfc^rfc4175
2145
+ person^_3GPP|template^video/rtp-enc-aescm128
2146
+ rfc^rfc6849|template^video/rtploopback
2147
+ rfc^rfc4588|template^video/rtx
2148
+ rfc^rfc8331|template^video/smpte291
2149
+ rfc^rfc3497|template^video/SMPTE292M
2150
+ rfc^rfc5109|template^video/ulpfec
2151
+ rfc^rfc4425|template^video/vc1
2152
+ rfc^rfc8450|template^video/vc2
2153
+ person^Frank_Rottmann|template^video/vnd.CCTV
2154
+ person^Michael_A_Dolan|template^video/vnd.dece.hd
2155
+ person^Michael_A_Dolan|template^video/vnd.dece.mobile
2156
+ person^Michael_A_Dolan|template^video/vnd.dece.mp4
2157
+ person^Michael_A_Dolan|template^video/vnd.dece.pd
2158
+ person^Michael_A_Dolan|template^video/vnd.dece.sd
2159
+ person^Michael_A_Dolan|template^video/vnd.dece.video
2160
+ person^Nathan_Zerbe|template^video/vnd.directv.mpeg
2161
+ person^Nathan_Zerbe|template^video/vnd.directv.mpeg-tts
2162
+ person^Edwin_Heredia|template^video/vnd.dlna.mpeg-tts
2163
+ person^Kevin_Murray^Peter_Siebert|template^video/vnd.dvb.file
2164
+ person^Arild_Fuldseth|template^video/vnd.fvt
2165
+ person^Swaminathan|template^video/vnd.hns.video
2166
+ person^Shuji_Nakamura|template^video/vnd.iptvforum.1dparityfec-1010
2167
+ person^Shuji_Nakamura|template^video/vnd.iptvforum.1dparityfec-2005
2168
+ person^Shuji_Nakamura|template^video/vnd.iptvforum.2dparityfec-1010
2169
+ person^Shuji_Nakamura|template^video/vnd.iptvforum.2dparityfec-2005
2170
+ person^Shuji_Nakamura|template^video/vnd.iptvforum.ttsavc
2171
+ person^Shuji_Nakamura|template^video/vnd.iptvforum.ttsmpeg2
2172
+ person^Tom_McGinty|template^video/vnd.motorola.video
2173
+ person^Tom_McGinty|template^video/vnd.motorola.videop
2174
+ person^Heiko_Recktenwald|template^video/vnd.mpegurl
2175
+ person^Steve_DiAcetis|template^video/vnd.ms-playready.media.pyv
2176
+ person^Petteri_Kangaslampi|template^video/vnd.nokia.interleaved-multimedia
2177
+ person^Miska_M._Hannuksela|template^video/vnd.nokia.mp4vr
2178
+ person^Nokia|template^video/vnd.nokia.videovoip
2179
+ person^John_Clark|template^video/vnd.objectvideo
2180
+ person^Henrik_Andersson|template^video/vnd.radgamettools.bink
2181
+ person^Henrik_Andersson|template^video/vnd.radgamettools.smacker
2182
+ person^David_Petersen|template^video/vnd.sealed.mpeg1
2183
+ person^David_Petersen|template^video/vnd.sealed.mpeg4
2184
+ person^David_Petersen|template^video/vnd.sealed.swf
2185
+ person^David_Petersen|template^video/vnd.sealedmedia.softseal.mov
2186
+ person^Michael_A_Dolan|template^video/vnd.uvvu.mp4
2187
+ person^John_Wolfe|template^video/vnd.vivo
2188
+ person^Google|template^video/vnd.youtube.yt
2189
+ rfc^rfc7741|template^video/VP8
2190
+ -
2191
+ -
2192
+ -
2193
+ -
2194
+ -
2195
+ -
2196
+ -
2197
+ -
2198
+ -
2199
+ -
2200
+ -
2201
+ -
2202
+ -
2203
+ -
2204
+ -
2205
+ -
2206
+ -
2207
+ -
2208
+ -
2209
+ -
2210
+ -
2211
+ -
2212
+ -
2213
+ -
2214
+ -
2215
+ -