diffend 0.2.40 → 0.2.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (209) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/.github/workflows/ci.yml +3 -0
  5. data/.ruby-version +1 -1
  6. data/CHANGELOG.md +23 -1
  7. data/Gemfile.lock +3 -2
  8. data/Rakefile +43 -0
  9. data/certs/mensfeld.pem +21 -21
  10. data/diffend.gemspec +1 -1
  11. data/lib/diffend/commands.rb +2 -0
  12. data/lib/diffend/configs/error_messages.rb +11 -0
  13. data/lib/diffend/configs/validator.rb +22 -0
  14. data/lib/diffend/errors.rb +2 -0
  15. data/lib/diffend/execute.rb +4 -3
  16. data/lib/diffend/handle_errors/report.rb +4 -4
  17. data/lib/diffend/integration_repository.rb +92 -0
  18. data/lib/diffend/local_context/host.rb +12 -1
  19. data/lib/diffend/local_context/packages.rb +10 -27
  20. data/lib/diffend/plugin.rb +3 -0
  21. data/lib/diffend/repository.rb +109 -0
  22. data/lib/diffend/request_object.rb +1 -1
  23. data/lib/diffend/request_verdict.rb +4 -4
  24. data/lib/diffend/shell.rb +44 -0
  25. data/lib/diffend/track.rb +4 -4
  26. data/lib/diffend/version.rb +1 -1
  27. data/repositories/.diffend.yml +3 -0
  28. data/repositories/bundler_2_1_4/install_with_gemfile_lock/.diffend.yml +3 -0
  29. data/repositories/bundler_2_1_4/install_with_gemfile_lock/Gemfile +6 -0
  30. data/repositories/bundler_2_1_4/install_with_gemfile_lock/Gemfile.lock +22 -0
  31. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_added_gem/.diffend.yml +3 -0
  32. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_added_gem/Gemfile +6 -0
  33. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_added_gem/Gemfile.lock +16 -0
  34. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_changed_gem_version/.diffend.yml +3 -0
  35. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_changed_gem_version/Gemfile +6 -0
  36. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_changed_gem_version/Gemfile.lock +18 -0
  37. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_changed_gem_version/README.md +1 -0
  38. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_locked_gem_version/.diffend.yml +3 -0
  39. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_locked_gem_version/Gemfile +6 -0
  40. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_locked_gem_version/Gemfile.lock +19 -0
  41. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_removed_gem/.diffend.yml +3 -0
  42. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_removed_gem/Gemfile +5 -0
  43. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_removed_gem/Gemfile.lock +43 -0
  44. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_platforms/.diffend.yml +3 -0
  45. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_platforms/.ruby-version +1 -0
  46. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_platforms/Gemfile +10 -0
  47. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_platforms/Gemfile.lock +32 -0
  48. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_platforms/gem-with-two-platforms.gemspec +16 -0
  49. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_primary_sources/.diffend.yml +3 -0
  50. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_primary_sources/Gemfile +6 -0
  51. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_primary_sources/Gemfile.lock +17 -0
  52. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_sources/.diffend.yml +3 -0
  53. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_sources/Gemfile +6 -0
  54. data/repositories/bundler_2_1_4/install_with_gemfile_lock_with_two_sources/Gemfile.lock +19 -0
  55. data/repositories/bundler_2_1_4/install_without_gemfile_lock/.diffend.yml +3 -0
  56. data/repositories/bundler_2_1_4/install_without_gemfile_lock/Gemfile +5 -0
  57. data/repositories/bundler_2_1_4/update_with_gemfile_lock/.diffend.yml +3 -0
  58. data/repositories/bundler_2_1_4/update_with_gemfile_lock/Gemfile +5 -0
  59. data/repositories/bundler_2_1_4/update_with_gemfile_lock/Gemfile.lock +16 -0
  60. data/repositories/bundler_2_1_4/update_with_gemfile_lock/README.md +1 -0
  61. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_added_gem/.diffend.yml +3 -0
  62. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_added_gem/Gemfile +6 -0
  63. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_added_gem/Gemfile.lock +16 -0
  64. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_added_gem/README.md +1 -0
  65. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_removed_gem/.diffend.yml +3 -0
  66. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_removed_gem/Gemfile +5 -0
  67. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_removed_gem/Gemfile.lock +43 -0
  68. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_removed_gem/README.md +1 -0
  69. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_two_primary_sources/.diffend.yml +3 -0
  70. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_two_primary_sources/Gemfile +6 -0
  71. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_two_primary_sources/Gemfile.lock +17 -0
  72. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_two_primary_sources/README.md +1 -0
  73. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_two_sources/.diffend.yml +3 -0
  74. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_two_sources/Gemfile +6 -0
  75. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_two_sources/Gemfile.lock +44 -0
  76. data/repositories/bundler_2_1_4/update_with_gemfile_lock_with_two_sources/README.md +1 -0
  77. data/repositories/bundler_2_1_4/update_without_gemfile_lock/.diffend.yml +3 -0
  78. data/repositories/bundler_2_1_4/update_without_gemfile_lock/Gemfile +5 -0
  79. data/repositories/bundler_2_1_4/update_without_gemfile_lock/README.md +1 -0
  80. data/repositories/bundler_2_2_17/install_with_gemfile_lock/.diffend.yml +3 -0
  81. data/repositories/bundler_2_2_17/install_with_gemfile_lock/Gemfile +6 -0
  82. data/repositories/bundler_2_2_17/install_with_gemfile_lock/Gemfile.lock +21 -0
  83. data/repositories/bundler_2_2_17/install_with_gemfile_lock/README.md +1 -0
  84. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_added_gem/.diffend.yml +3 -0
  85. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_added_gem/Gemfile +6 -0
  86. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_added_gem/Gemfile.lock +16 -0
  87. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_added_gem/README.md +1 -0
  88. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_changed_gem_version/.diffend.yml +3 -0
  89. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_changed_gem_version/Gemfile +6 -0
  90. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_changed_gem_version/Gemfile.lock +18 -0
  91. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_changed_gem_version/README.md +1 -0
  92. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_locked_gem_version/.diffend.yml +3 -0
  93. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_locked_gem_version/Gemfile +6 -0
  94. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_locked_gem_version/Gemfile.lock +18 -0
  95. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_locked_gem_version/README.md +1 -0
  96. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_removed_gem/.diffend.yml +3 -0
  97. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_removed_gem/Gemfile +5 -0
  98. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_removed_gem/Gemfile.lock +41 -0
  99. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_removed_gem/README.md +1 -0
  100. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_platforms/.diffend.yml +3 -0
  101. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_platforms/Gemfile +10 -0
  102. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_platforms/Gemfile.lock +30 -0
  103. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_platforms/README.md +1 -0
  104. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_platforms/gem-with-two-platforms.gemspec +16 -0
  105. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_primary_sources/.diffend.yml +3 -0
  106. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_primary_sources/Gemfile +6 -0
  107. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_primary_sources/Gemfile.lock +17 -0
  108. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_primary_sources/README.md +1 -0
  109. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_sources/.diffend.yml +3 -0
  110. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_sources/Gemfile +6 -0
  111. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_sources/Gemfile.lock +19 -0
  112. data/repositories/bundler_2_2_17/install_with_gemfile_lock_with_two_sources/README.md +1 -0
  113. data/repositories/bundler_2_2_17/install_without_gemfile_lock/.diffend.yml +3 -0
  114. data/repositories/bundler_2_2_17/install_without_gemfile_lock/Gemfile +5 -0
  115. data/repositories/bundler_2_2_17/install_without_gemfile_lock/README.md +1 -0
  116. data/repositories/bundler_2_2_17/update_with_gemfile_lock/.diffend.yml +3 -0
  117. data/repositories/bundler_2_2_17/update_with_gemfile_lock/Gemfile +5 -0
  118. data/repositories/bundler_2_2_17/update_with_gemfile_lock/Gemfile.lock +16 -0
  119. data/repositories/bundler_2_2_17/update_with_gemfile_lock/README.md +1 -0
  120. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_added_gem/.diffend.yml +3 -0
  121. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_added_gem/Gemfile +6 -0
  122. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_added_gem/Gemfile.lock +16 -0
  123. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_added_gem/README.md +1 -0
  124. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_changed_gem_version/Gemfile +6 -0
  125. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_changed_gem_version/Gemfile.lock +18 -0
  126. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_changed_gem_version/README.md +1 -0
  127. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_locked_gem_version/Gemfile +6 -0
  128. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_locked_gem_version/Gemfile.lock +18 -0
  129. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_locked_gem_version/README.md +1 -0
  130. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_removed_gem/.diffend.yml +3 -0
  131. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_removed_gem/Gemfile +5 -0
  132. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_removed_gem/Gemfile.lock +41 -0
  133. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_two_primary_sources/.diffend.yml +3 -0
  134. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_two_primary_sources/Gemfile +6 -0
  135. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_two_primary_sources/Gemfile.lock +17 -0
  136. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_two_primary_sources/README.md +1 -0
  137. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_two_sources/.diffend.yml +3 -0
  138. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_two_sources/Gemfile +6 -0
  139. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_two_sources/Gemfile.lock +42 -0
  140. data/repositories/bundler_2_2_17/update_with_gemfile_lock_with_two_sources/README.md +1 -0
  141. data/repositories/bundler_2_2_17/update_without_gemfile_lock/.diffend.yml +3 -0
  142. data/repositories/bundler_2_2_17/update_without_gemfile_lock/Gemfile +5 -0
  143. data/repositories/bundler_2_2_7/install_with_gemfile_lock/.diffend.yml +3 -0
  144. data/repositories/bundler_2_2_7/install_with_gemfile_lock/Gemfile +6 -0
  145. data/repositories/bundler_2_2_7/install_with_gemfile_lock/Gemfile.lock +21 -0
  146. data/repositories/bundler_2_2_7/install_with_gemfile_lock/README.md +1 -0
  147. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_added_gem/.diffend.yml +3 -0
  148. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_added_gem/Gemfile +6 -0
  149. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_added_gem/Gemfile.lock +16 -0
  150. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_added_gem/README.md +1 -0
  151. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_changed_gem_version/.diffend.yml +3 -0
  152. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_changed_gem_version/Gemfile +6 -0
  153. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_changed_gem_version/Gemfile.lock +18 -0
  154. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_changed_gem_version/README.md +1 -0
  155. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_locked_gem_version/.diffend.yml +3 -0
  156. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_locked_gem_version/Gemfile +6 -0
  157. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_locked_gem_version/Gemfile.lock +18 -0
  158. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_locked_gem_version/README.md +1 -0
  159. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_removed_gem/.diffend.yml +3 -0
  160. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_removed_gem/Gemfile +5 -0
  161. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_removed_gem/Gemfile.lock +41 -0
  162. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_removed_gem/README.md +1 -0
  163. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_platforms/.diffend.yml +3 -0
  164. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_platforms/Gemfile +10 -0
  165. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_platforms/Gemfile.lock +30 -0
  166. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_platforms/README.md +1 -0
  167. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_platforms/gem-with-two-platforms.gemspec +16 -0
  168. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_primary_sources/.diffend.yml +3 -0
  169. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_primary_sources/Gemfile +6 -0
  170. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_primary_sources/Gemfile.lock +17 -0
  171. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_primary_sources/README.md +1 -0
  172. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_sources/.diffend.yml +3 -0
  173. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_sources/Gemfile +6 -0
  174. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_sources/Gemfile.lock +19 -0
  175. data/repositories/bundler_2_2_7/install_with_gemfile_lock_with_two_sources/README.md +1 -0
  176. data/repositories/bundler_2_2_7/install_without_gemfile_lock/.diffend.yml +3 -0
  177. data/repositories/bundler_2_2_7/install_without_gemfile_lock/Gemfile +5 -0
  178. data/repositories/bundler_2_2_7/install_without_gemfile_lock/README.md +1 -0
  179. data/repositories/bundler_2_2_7/update_with_gemfile_lock/.diffend.yml +3 -0
  180. data/repositories/bundler_2_2_7/update_with_gemfile_lock/Gemfile +5 -0
  181. data/repositories/bundler_2_2_7/update_with_gemfile_lock/Gemfile.lock +16 -0
  182. data/repositories/bundler_2_2_7/update_with_gemfile_lock/README.md +1 -0
  183. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_added_gem/.diffend.yml +3 -0
  184. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_added_gem/Gemfile +6 -0
  185. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_added_gem/Gemfile.lock +16 -0
  186. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_added_gem/README.md +1 -0
  187. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_changed_gem_version/Gemfile +6 -0
  188. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_changed_gem_version/Gemfile.lock +18 -0
  189. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_changed_gem_version/README.md +1 -0
  190. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_locked_gem_version/Gemfile +6 -0
  191. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_locked_gem_version/Gemfile.lock +18 -0
  192. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_locked_gem_version/README.md +1 -0
  193. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_removed_gem/.diffend.yml +3 -0
  194. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_removed_gem/Gemfile +5 -0
  195. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_removed_gem/Gemfile.lock +41 -0
  196. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_two_primary_sources/.diffend.yml +3 -0
  197. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_two_primary_sources/Gemfile +6 -0
  198. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_two_primary_sources/Gemfile.lock +17 -0
  199. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_two_primary_sources/README.md +1 -0
  200. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_two_sources/.diffend.yml +3 -0
  201. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_two_sources/Gemfile +6 -0
  202. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_two_sources/Gemfile.lock +42 -0
  203. data/repositories/bundler_2_2_7/update_with_gemfile_lock_with_two_sources/README.md +1 -0
  204. data/repositories/bundler_2_2_7/update_without_gemfile_lock/.diffend.yml +3 -0
  205. data/repositories/bundler_2_2_7/update_without_gemfile_lock/Gemfile +5 -0
  206. data/repositories/diffend.json +9 -0
  207. metadata +214 -31
  208. metadata.gz.sig +0 -0
  209. data/certs/tomaszpajor.pem +0 -25
metadata.gz.sig CHANGED
Binary file
@@ -1,25 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIERDCCAqygAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBt0b21l
3
- ay9EQz1wb2xpc2hnZWVrcy9EQz1jb20wHhcNMjAwNzA3MTY0NjU0WhcNMjEwNzA3
4
- MTY0NjU0WjAmMSQwIgYDVQQDDBt0b21lay9EQz1wb2xpc2hnZWVrcy9EQz1jb20w
5
- ggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDPRTvPuofdtL/wFEPOwPUr
6
- vR0XHzM/ADb2GBuzu6fzgmoxaYXBe8A++0BbgFvK47T04i8bsbXnfkxrkz/nupQ5
7
- SK2DPgS4HWnADuyBuyBY7LT4O1wwlytdlHtJgQV6NIcbprcOs/ZQKnimZpW9uByu
8
- FoN3i94pAEQhuzK0S+wWPvSm22+6XGtCuOzyFGdnCJjGUOkCRno5Nx34MWz0NpJ3
9
- 9Ekkyy8g2cLvBcUdfeSrY7WsJ5cPCNrBs5cMuV426s1dDrhuvsW+sacwwY/4/LBw
10
- JzEX4/zS+lsVIX+iOoIFGJdeGnpEWqKgWoaskxqseFi661td1n9UaMXxgoaYh/oX
11
- 3fJOy2jsZFboZ/eJ5rfciXLiCqSERGkEA+QcA2/jC/d77YJ1FfJW9uwJs3kptf4D
12
- p6h8wuA3T6rN4QrxkGBYzOfUJ2zSQy1cFu0rTZiYdKo9X6BunnxhmUExNng7advu
13
- qo8IDinyRlqA5+sOLXd4W3AS/RfF2nrayZNa3khTmmUCAwEAAaN9MHswCQYDVR0T
14
- BAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFHRFOZPwpgOd2m8FIOodOii+OiID
15
- MCAGA1UdEQQZMBeBFXRvbWVrQHBvbGlzaGdlZWtzLmNvbTAgBgNVHRIEGTAXgRV0
16
- b21la0Bwb2xpc2hnZWVrcy5jb20wDQYJKoZIhvcNAQELBQADggGBAKWFwYTGZVoy
17
- Bj3L9lvGOXpz8VWNoptFNHdncpaw1MMhS8UHcPQOUEiExX5ZH7MARy1fBjMXzIh9
18
- 41ZpCjR+S6uCEpzUcg5Z/kEWa/wOW6tqrX+zfyxFATDI20pYaQWOLepjbDxePFMZ
19
- GAlIX5UNsze04A+wArXAttZB4oPt6loS1ao0GNdMb+syYMLzZUTW/sY2rm8zP4Mz
20
- Kt+zjoqMxQ1Jf+EwH+0uq8Tj5BJcmG6mWYM+ljvRbxBwfimoUBUCQe6KIDouF0Og
21
- uwLMY7X3jSERta4SxyY+iY7qNLsmG370GIGYbHuIiCwubFXt8jiPJZEdPE1xuzVF
22
- CLsYItzC28UQEWrVe6sJ0Fuqv5VHM6t8jNClkXDwzf95efFlGSCFN4t+/dywVIK8
23
- 9MmF6uCQa1EjK2p8tYT0MnbHrFkoehxdX4VO9y99GAkhZyJNKPYPtyAUFV27sT2V
24
- LfCJRk4ifKIN/FUCwDSn8Cz0m6oH265q0p6wdzI6qrWOjP8tGOMBTA==
25
- -----END CERTIFICATE-----