-
@RunWith(SpringRunner.class)
-@SpringBootTest(webEnvironment = WebEnvironment.NONE)
+@SpringBootTest(webEnvironment = WebEnvironment.NONE)
@AutoConfigureStubRunner(ids = {
"com.example:http-server-dsl:0.0.1:stubs" }, stubsMode = StubRunnerProperties.StubsMode.LOCAL)
public class LoanApplicationServiceTests {
@@ -2345,11 +2344,11 @@ start the server side FraudDetectionController. The following listi
package com.example.fraud;
import io.restassured.module.mockmvc.RestAssuredMockMvc;
-import org.junit.Before;
+import org.junit.jupiter.api.BeforeEach;
public class FraudBase {
- @Before
+ @BeforeEach
public void setup() {
RestAssuredMockMvc.standaloneSetup(new FraudDetectionController(),
new FraudStatsController(stubbedStatsProvider()));
diff --git a/reference/html/howto.html b/reference/html/howto.html
index 9d74f40776..7757f327ae 100644
--- a/reference/html/howto.html
+++ b/reference/html/howto.html
@@ -2359,6 +2359,7 @@ import org.junit.Rule;
import org.junit.rules.TestName;
import org.junit.runner.RunWith;
+
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.restdocs.JUnitRestDocumentation;
diff --git a/reference/html/project-features.html b/reference/html/project-features.html
index 536c06a3bd..18df0ddb76 100644
--- a/reference/html/project-features.html
+++ b/reference/html/project-features.html
@@ -10445,8 +10445,7 @@ your test. The following code shows an example:
-
@RunWith(SpringRunner.class)
-@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
+@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
@AutoConfigureWireMock(port = 0)
public class WiremockForDocsTests {
@@ -10454,7 +10453,7 @@ public class WiremockForDocsTests {
@Autowired
private Service service;
- @Before
+ @BeforeEach
public void setup() {
this.service.setBase("http://localhost:"
+ this.environment.getProperty("wiremock.server.port"));
@@ -10586,21 +10585,33 @@ instance, as the following example shows:
-
@RunWith(SpringRunner.class)
-@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
+@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
public class WiremockForDocsClassRuleTests {
// Start WireMock on some dynamic port
// for some reason `dynamicPort()` is not working properly
- @ClassRule
- public static WireMockClassRule wiremock = new WireMockClassRule(
- WireMockSpring.options().dynamicPort());
+ public static WireMockServer wiremock = new WireMockServer(WireMockSpring.options().dynamicPort());
+
+ @BeforeAll
+ static void setupClass() {
+ wiremock.start();
+ }
+
+ @AfterEach
+ void after() {
+ wiremock.resetAll();
+ }
+
+ @AfterAll
+ static void clean() {
+ wiremock.shutdown();
+ }
// A service that calls out over HTTP to wiremock's port
@Autowired
private Service service;
- @Before
+ @BeforeEach
public void setup() {
this.service.setBase("http://localhost:" + wiremock.port());
}
@@ -10698,8 +10709,7 @@ a Spring MockRestServiceServer. The following code shows an example
-
@RunWith(SpringRunner.class)
-@SpringBootTest(webEnvironment = WebEnvironment.NONE)
+@SpringBootTest(webEnvironment = WebEnvironment.NONE)
public class WiremockForDocsMockServerApplicationTests {
@Autowired
diff --git a/reference/htmlsingle/index.html b/reference/htmlsingle/index.html
index 4ef8caf0bf..d51bfe6c9d 100644
--- a/reference/htmlsingle/index.html
+++ b/reference/htmlsingle/index.html
@@ -2214,8 +2214,7 @@ can also provide the offline work switch (StubRunnerProperties.StubsMode.L
-
@RunWith(SpringRunner.class)
-@SpringBootTest(webEnvironment = WebEnvironment.NONE)
+@SpringBootTest(webEnvironment = WebEnvironment.NONE)
@AutoConfigureStubRunner(ids = {
"com.example:http-server-dsl:0.0.1:stubs" }, stubsMode = StubRunnerProperties.StubsMode.LOCAL)
public class LoanApplicationServiceTests {
@@ -2411,11 +2410,11 @@ start the server side FraudDetectionController. The following listi
package com.example.fraud;
import io.restassured.module.mockmvc.RestAssuredMockMvc;
-import org.junit.Before;
+import org.junit.jupiter.api.BeforeEach;
public class FraudBase {
- @Before
+ @BeforeEach
public void setup() {
RestAssuredMockMvc.standaloneSetup(new FraudDetectionController(),
new FraudStatsController(stubbedStatsProvider()));
@@ -13819,8 +13818,7 @@ your test. The following code shows an example:
-
@RunWith(SpringRunner.class)
-@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
+@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
@AutoConfigureWireMock(port = 0)
public class WiremockForDocsTests {
@@ -13828,7 +13826,7 @@ public class WiremockForDocsTests {
@Autowired
private Service service;
- @Before
+ @BeforeEach
public void setup() {
this.service.setBase("http://localhost:"
+ this.environment.getProperty("wiremock.server.port"));
@@ -13960,21 +13958,33 @@ instance, as the following example shows:
-
@RunWith(SpringRunner.class)
-@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
+@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
public class WiremockForDocsClassRuleTests {
// Start WireMock on some dynamic port
// for some reason `dynamicPort()` is not working properly
- @ClassRule
- public static WireMockClassRule wiremock = new WireMockClassRule(
- WireMockSpring.options().dynamicPort());
+ public static WireMockServer wiremock = new WireMockServer(WireMockSpring.options().dynamicPort());
+
+ @BeforeAll
+ static void setupClass() {
+ wiremock.start();
+ }
+
+ @AfterEach
+ void after() {
+ wiremock.resetAll();
+ }
+
+ @AfterAll
+ static void clean() {
+ wiremock.shutdown();
+ }
// A service that calls out over HTTP to wiremock's port
@Autowired
private Service service;
- @Before
+ @BeforeEach
public void setup() {
this.service.setBase("http://localhost:" + wiremock.port());
}
@@ -14072,8 +14082,7 @@ a Spring MockRestServiceServer. The following code shows an example
-
@RunWith(SpringRunner.class)
-@SpringBootTest(webEnvironment = WebEnvironment.NONE)
+@SpringBootTest(webEnvironment = WebEnvironment.NONE)
public class WiremockForDocsMockServerApplicationTests {
@Autowired
@@ -19526,6 +19535,7 @@ import org.junit.Rule;
import org.junit.rules.TestName;
import org.junit.runner.RunWith;
+
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.restdocs.JUnitRestDocumentation;
diff --git a/reference/pdf/spring-cloud-contract.pdf b/reference/pdf/spring-cloud-contract.pdf
index ecd4137ddc..4196120c57 100644
--- a/reference/pdf/spring-cloud-contract.pdf
+++ b/reference/pdf/spring-cloud-contract.pdf
@@ -5,16 +5,16 @@
/Author
/Creator (Asciidoctor PDF 1.5.0.alpha.18, based on Prawn 2.2.2)
/Producer
-/ModDate (D:20200207125501+00'00')
-/CreationDate (D:20200207125531+00'00')
+/ModDate (D:20200207132515+00'00')
+/CreationDate (D:20200207132543+00'00')
>>
endobj
2 0 obj
<< /Type /Catalog
/Pages 3 0 R
/Names 19 0 R
-/Outlines 1483 0 R
-/PageLabels 1569 0 R
+/Outlines 1485 0 R
+/PageLabels 1571 0 R
/PageMode /UseOutlines
/OpenAction [7 0 R /FitH 842.89]
/ViewerPreferences << /DisplayDocTitle true
@@ -23,8 +23,8 @@ endobj
endobj
3 0 obj
<< /Type /Pages
-/Count 357
-/Kids [7 0 R 11 0 R 13 0 R 15 0 R 17 0 R 24 0 R 39 0 R 43 0 R 49 0 R 52 0 R 54 0 R 60 0 R 63 0 R 67 0 R 74 0 R 77 0 R 83 0 R 85 0 R 87 0 R 89 0 R 91 0 R 93 0 R 95 0 R 97 0 R 99 0 R 102 0 R 104 0 R 107 0 R 112 0 R 115 0 R 119 0 R 125 0 R 127 0 R 129 0 R 135 0 R 137 0 R 140 0 R 142 0 R 146 0 R 149 0 R 152 0 R 154 0 R 156 0 R 162 0 R 173 0 R 179 0 R 184 0 R 197 0 R 205 0 R 207 0 R 215 0 R 222 0 R 224 0 R 227 0 R 229 0 R 231 0 R 233 0 R 246 0 R 250 0 R 252 0 R 255 0 R 262 0 R 268 0 R 270 0 R 272 0 R 279 0 R 285 0 R 287 0 R 289 0 R 291 0 R 293 0 R 295 0 R 299 0 R 302 0 R 304 0 R 309 0 R 318 0 R 320 0 R 323 0 R 327 0 R 330 0 R 333 0 R 335 0 R 337 0 R 339 0 R 341 0 R 345 0 R 347 0 R 349 0 R 352 0 R 354 0 R 356 0 R 358 0 R 360 0 R 362 0 R 364 0 R 366 0 R 368 0 R 370 0 R 372 0 R 374 0 R 376 0 R 378 0 R 380 0 R 382 0 R 384 0 R 386 0 R 388 0 R 391 0 R 393 0 R 401 0 R 408 0 R 410 0 R 412 0 R 414 0 R 416 0 R 418 0 R 420 0 R 422 0 R 427 0 R 432 0 R 434 0 R 436 0 R 438 0 R 444 0 R 446 0 R 449 0 R 452 0 R 454 0 R 456 0 R 458 0 R 460 0 R 462 0 R 464 0 R 469 0 R 472 0 R 474 0 R 476 0 R 478 0 R 480 0 R 482 0 R 484 0 R 486 0 R 488 0 R 490 0 R 492 0 R 494 0 R 496 0 R 499 0 R 501 0 R 503 0 R 506 0 R 508 0 R 510 0 R 512 0 R 514 0 R 517 0 R 519 0 R 521 0 R 523 0 R 528 0 R 532 0 R 535 0 R 538 0 R 541 0 R 543 0 R 547 0 R 549 0 R 552 0 R 556 0 R 558 0 R 565 0 R 569 0 R 571 0 R 574 0 R 577 0 R 582 0 R 586 0 R 589 0 R 591 0 R 593 0 R 595 0 R 598 0 R 600 0 R 602 0 R 604 0 R 607 0 R 609 0 R 611 0 R 614 0 R 617 0 R 619 0 R 632 0 R 636 0 R 639 0 R 643 0 R 650 0 R 652 0 R 658 0 R 663 0 R 668 0 R 670 0 R 676 0 R 682 0 R 686 0 R 688 0 R 691 0 R 695 0 R 699 0 R 702 0 R 706 0 R 711 0 R 713 0 R 716 0 R 721 0 R 725 0 R 727 0 R 730 0 R 732 0 R 736 0 R 742 0 R 744 0 R 751 0 R 757 0 R 763 0 R 767 0 R 771 0 R 773 0 R 775 0 R 777 0 R 782 0 R 786 0 R 788 0 R 790 0 R 792 0 R 794 0 R 800 0 R 807 0 R 815 0 R 823 0 R 825 0 R 828 0 R 830 0 R 833 0 R 835 0 R 839 0 R 841 0 R 845 0 R 848 0 R 854 0 R 859 0 R 864 0 R 869 0 R 873 0 R 877 0 R 885 0 R 891 0 R 908 0 R 910 0 R 913 0 R 915 0 R 919 0 R 924 0 R 927 0 R 930 0 R 933 0 R 935 0 R 939 0 R 943 0 R 946 0 R 950 0 R 952 0 R 958 0 R 960 0 R 962 0 R 981 0 R 983 0 R 985 0 R 988 0 R 991 0 R 994 0 R 998 0 R 1002 0 R 1004 0 R 1008 0 R 1014 0 R 1020 0 R 1022 0 R 1029 0 R 1046 0 R 1049 0 R 1051 0 R 1063 0 R 1071 0 R 1079 0 R 1081 0 R 1083 0 R 1085 0 R 1087 0 R 1091 0 R 1094 0 R 1096 0 R 1101 0 R 1103 0 R 1108 0 R 1110 0 R 1113 0 R 1115 0 R 1119 0 R 1122 0 R 1125 0 R 1127 0 R 1130 0 R 1133 0 R 1135 0 R 1146 0 R 1148 0 R 1156 0 R 1160 0 R 1166 0 R 1168 0 R 1170 0 R 1172 0 R 1174 0 R 1182 0 R 1202 0 R 1205 0 R 1207 0 R 1211 0 R 1213 0 R 1217 0 R 1219 0 R 1222 0 R 1224 0 R 1226 0 R 1233 0 R 1240 0 R 1242 0 R 1245 0 R 1247 0 R 1251 0 R 1253 0 R 1257 0 R 1261 0 R 1265 0 R 1267 0 R 1274 0 R 1279 0 R 1281 0 R 1289 0 R 1291 0 R 1293 0 R 1296 0 R 1307 0 R 1309 0 R 1311 0 R 1314 0 R]
+/Count 358
+/Kids [7 0 R 11 0 R 13 0 R 15 0 R 17 0 R 24 0 R 39 0 R 43 0 R 49 0 R 52 0 R 54 0 R 60 0 R 63 0 R 67 0 R 74 0 R 77 0 R 83 0 R 85 0 R 87 0 R 89 0 R 91 0 R 93 0 R 95 0 R 97 0 R 99 0 R 102 0 R 104 0 R 107 0 R 112 0 R 115 0 R 119 0 R 125 0 R 127 0 R 129 0 R 135 0 R 137 0 R 140 0 R 142 0 R 146 0 R 149 0 R 152 0 R 154 0 R 156 0 R 162 0 R 173 0 R 179 0 R 184 0 R 197 0 R 205 0 R 207 0 R 215 0 R 222 0 R 224 0 R 227 0 R 229 0 R 231 0 R 233 0 R 246 0 R 250 0 R 252 0 R 255 0 R 262 0 R 268 0 R 270 0 R 272 0 R 279 0 R 285 0 R 287 0 R 289 0 R 291 0 R 293 0 R 295 0 R 299 0 R 302 0 R 304 0 R 309 0 R 318 0 R 320 0 R 323 0 R 327 0 R 330 0 R 333 0 R 335 0 R 337 0 R 339 0 R 341 0 R 345 0 R 347 0 R 349 0 R 352 0 R 354 0 R 356 0 R 358 0 R 360 0 R 362 0 R 364 0 R 366 0 R 368 0 R 370 0 R 372 0 R 374 0 R 376 0 R 378 0 R 380 0 R 382 0 R 384 0 R 386 0 R 388 0 R 391 0 R 393 0 R 401 0 R 408 0 R 410 0 R 412 0 R 414 0 R 416 0 R 418 0 R 420 0 R 422 0 R 427 0 R 432 0 R 434 0 R 436 0 R 438 0 R 444 0 R 446 0 R 449 0 R 452 0 R 454 0 R 456 0 R 458 0 R 460 0 R 462 0 R 464 0 R 469 0 R 472 0 R 474 0 R 476 0 R 478 0 R 480 0 R 482 0 R 484 0 R 486 0 R 488 0 R 490 0 R 492 0 R 494 0 R 496 0 R 499 0 R 501 0 R 503 0 R 506 0 R 508 0 R 510 0 R 512 0 R 514 0 R 517 0 R 519 0 R 521 0 R 523 0 R 528 0 R 532 0 R 535 0 R 538 0 R 541 0 R 543 0 R 547 0 R 549 0 R 552 0 R 556 0 R 558 0 R 565 0 R 569 0 R 571 0 R 574 0 R 577 0 R 582 0 R 586 0 R 589 0 R 591 0 R 593 0 R 595 0 R 598 0 R 600 0 R 602 0 R 604 0 R 607 0 R 609 0 R 611 0 R 614 0 R 617 0 R 619 0 R 632 0 R 636 0 R 639 0 R 643 0 R 650 0 R 652 0 R 658 0 R 663 0 R 668 0 R 670 0 R 676 0 R 682 0 R 686 0 R 688 0 R 691 0 R 695 0 R 699 0 R 702 0 R 706 0 R 711 0 R 713 0 R 716 0 R 721 0 R 725 0 R 727 0 R 730 0 R 732 0 R 736 0 R 742 0 R 744 0 R 751 0 R 757 0 R 763 0 R 767 0 R 771 0 R 773 0 R 775 0 R 777 0 R 782 0 R 786 0 R 788 0 R 790 0 R 792 0 R 794 0 R 800 0 R 807 0 R 815 0 R 823 0 R 825 0 R 828 0 R 830 0 R 833 0 R 835 0 R 839 0 R 841 0 R 845 0 R 848 0 R 854 0 R 859 0 R 864 0 R 869 0 R 872 0 R 874 0 R 879 0 R 886 0 R 893 0 R 910 0 R 912 0 R 915 0 R 917 0 R 921 0 R 926 0 R 929 0 R 932 0 R 935 0 R 937 0 R 941 0 R 945 0 R 948 0 R 952 0 R 954 0 R 960 0 R 962 0 R 964 0 R 983 0 R 985 0 R 987 0 R 990 0 R 993 0 R 996 0 R 1000 0 R 1004 0 R 1006 0 R 1010 0 R 1016 0 R 1022 0 R 1024 0 R 1031 0 R 1048 0 R 1051 0 R 1053 0 R 1065 0 R 1073 0 R 1081 0 R 1083 0 R 1085 0 R 1087 0 R 1089 0 R 1093 0 R 1096 0 R 1098 0 R 1103 0 R 1105 0 R 1110 0 R 1112 0 R 1115 0 R 1117 0 R 1121 0 R 1124 0 R 1127 0 R 1129 0 R 1132 0 R 1135 0 R 1137 0 R 1148 0 R 1150 0 R 1158 0 R 1162 0 R 1168 0 R 1170 0 R 1172 0 R 1174 0 R 1176 0 R 1184 0 R 1204 0 R 1207 0 R 1209 0 R 1213 0 R 1215 0 R 1219 0 R 1221 0 R 1224 0 R 1226 0 R 1228 0 R 1235 0 R 1242 0 R 1244 0 R 1247 0 R 1249 0 R 1253 0 R 1255 0 R 1259 0 R 1263 0 R 1267 0 R 1269 0 R 1276 0 R 1281 0 R 1283 0 R 1291 0 R 1293 0 R 1295 0 R 1298 0 R 1309 0 R 1311 0 R 1313 0 R 1316 0 R]
>>
endobj
4 0 obj
@@ -142,22 +142,22 @@ endobj
<< /Type /Font
/BaseFont /301702+NotoSerif
/Subtype /TrueType
-/FontDescriptor 1571 0 R
+/FontDescriptor 1573 0 R
/FirstChar 32
/LastChar 255
-/Widths 1573 0 R
-/ToUnicode 1572 0 R
+/Widths 1575 0 R
+/ToUnicode 1574 0 R
>>
endobj
9 0 obj
<< /Type /Font
/BaseFont /96b6ab+NotoSerif
/Subtype /TrueType
-/FontDescriptor 1575 0 R
+/FontDescriptor 1577 0 R
/FirstChar 32
/LastChar 255
-/Widths 1577 0 R
-/ToUnicode 1576 0 R
+/Widths 1579 0 R
+/ToUnicode 1578 0 R
>>
endobj
10 0 obj
@@ -1173,7 +1173,7 @@ ET
BT
529.4315 289.856 Td
/F1.0 10.5 Tf
-<323531> Tj
+<323532> Tj
ET
0.0 0.0 0.0 SCN
@@ -1213,7 +1213,7 @@ ET
BT
529.4315 271.376 Td
/F1.0 10.5 Tf
-<323532> Tj
+<323533> Tj
ET
0.0 0.0 0.0 SCN
@@ -1253,7 +1253,7 @@ ET
BT
529.4315 252.896 Td
/F1.0 10.5 Tf
-<323533> Tj
+<323534> Tj
ET
0.0 0.0 0.0 SCN
@@ -1293,7 +1293,7 @@ ET
BT
529.4315 234.416 Td
/F1.0 10.5 Tf
-<323533> Tj
+<323534> Tj
ET
0.0 0.0 0.0 SCN
@@ -1333,7 +1333,7 @@ ET
BT
529.4315 215.936 Td
/F1.0 10.5 Tf
-<323535> Tj
+<323536> Tj
ET
0.0 0.0 0.0 SCN
@@ -1373,7 +1373,7 @@ ET
BT
529.4315 197.456 Td
/F1.0 10.5 Tf
-<323537> Tj
+<323538> Tj
ET
0.0 0.0 0.0 SCN
@@ -1413,7 +1413,7 @@ ET
BT
529.4315 178.976 Td
/F1.0 10.5 Tf
-<323538> Tj
+<323539> Tj
ET
0.0 0.0 0.0 SCN
@@ -1453,7 +1453,7 @@ ET
BT
529.4315 160.496 Td
/F1.0 10.5 Tf
-<323538> Tj
+<323539> Tj
ET
0.0 0.0 0.0 SCN
@@ -1493,7 +1493,7 @@ ET
BT
529.4315 142.016 Td
/F1.0 10.5 Tf
-<323538> Tj
+<323539> Tj
ET
0.0 0.0 0.0 SCN
@@ -1533,7 +1533,7 @@ ET
BT
529.4315 123.536 Td
/F1.0 10.5 Tf
-<323539> Tj
+<323630> Tj
ET
0.0 0.0 0.0 SCN
@@ -1573,7 +1573,7 @@ ET
BT
529.4315 105.056 Td
/F1.0 10.5 Tf
-<323631> Tj
+<323632> Tj
ET
0.0 0.0 0.0 SCN
@@ -1613,7 +1613,7 @@ ET
BT
529.4315 86.576 Td
/F1.0 10.5 Tf
-<323633> Tj
+<323634> Tj
ET
0.0 0.0 0.0 SCN
@@ -1653,7 +1653,7 @@ ET
BT
529.4315 68.096 Td
/F1.0 10.5 Tf
-<323634> Tj
+<323635> Tj
ET
0.0 0.0 0.0 SCN
@@ -1676,7 +1676,7 @@ endobj
/F1.0 8 0 R
>>
>>
-/Annots [1315 0 R 1316 0 R 1317 0 R 1318 0 R 1319 0 R 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R 1346 0 R 1347 0 R 1348 0 R 1349 0 R 1350 0 R 1351 0 R 1352 0 R 1353 0 R 1354 0 R 1355 0 R 1356 0 R 1357 0 R 1358 0 R 1359 0 R 1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R 1378 0 R 1379 0 R 1380 0 R 1381 0 R 1382 0 R 1383 0 R 1384 0 R 1385 0 R 1386 0 R 1387 0 R 1388 0 R 1389 0 R]
+/Annots [1317 0 R 1318 0 R 1319 0 R 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R 1346 0 R 1347 0 R 1348 0 R 1349 0 R 1350 0 R 1351 0 R 1352 0 R 1353 0 R 1354 0 R 1355 0 R 1356 0 R 1357 0 R 1358 0 R 1359 0 R 1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R 1378 0 R 1379 0 R 1380 0 R 1381 0 R 1382 0 R 1383 0 R 1384 0 R 1385 0 R 1386 0 R 1387 0 R 1388 0 R 1389 0 R 1390 0 R 1391 0 R]
>>
endobj
12 0 obj
@@ -1721,7 +1721,7 @@ ET
BT
529.4315 794.676 Td
/F1.0 10.5 Tf
-<323635> Tj
+<323636> Tj
ET
0.0 0.0 0.0 SCN
@@ -1761,7 +1761,7 @@ ET
BT
529.4315 776.196 Td
/F1.0 10.5 Tf
-<323636> Tj
+<323637> Tj
ET
0.0 0.0 0.0 SCN
@@ -1801,7 +1801,7 @@ ET
BT
529.4315 757.716 Td
/F1.0 10.5 Tf
-<323638> Tj
+<323639> Tj
ET
0.0 0.0 0.0 SCN
@@ -1841,7 +1841,7 @@ ET
BT
529.4315 739.236 Td
/F1.0 10.5 Tf
-<323731> Tj
+<323732> Tj
ET
0.0 0.0 0.0 SCN
@@ -1881,7 +1881,7 @@ ET
BT
529.4315 720.756 Td
/F1.0 10.5 Tf
-<323731> Tj
+<323732> Tj
ET
0.0 0.0 0.0 SCN
@@ -1921,7 +1921,7 @@ ET
BT
529.4315 702.276 Td
/F1.0 10.5 Tf
-<323731> Tj
+<323732> Tj
ET
0.0 0.0 0.0 SCN
@@ -1961,7 +1961,7 @@ ET
BT
529.4315 683.796 Td
/F1.0 10.5 Tf
-<323734> Tj
+<323735> Tj
ET
0.0 0.0 0.0 SCN
@@ -2001,7 +2001,7 @@ ET
BT
529.4315 665.316 Td
/F1.0 10.5 Tf
-<323735> Tj
+<323736> Tj
ET
0.0 0.0 0.0 SCN
@@ -2041,7 +2041,7 @@ ET
BT
529.4315 646.836 Td
/F1.0 10.5 Tf
-<323736> Tj
+<323737> Tj
ET
0.0 0.0 0.0 SCN
@@ -2081,7 +2081,7 @@ ET
BT
529.4315 628.356 Td
/F1.0 10.5 Tf
-<323737> Tj
+<323738> Tj
ET
0.0 0.0 0.0 SCN
@@ -2121,7 +2121,7 @@ ET
BT
529.4315 609.876 Td
/F1.0 10.5 Tf
-<323737> Tj
+<323738> Tj
ET
0.0 0.0 0.0 SCN
@@ -2161,7 +2161,7 @@ ET
BT
529.4315 591.396 Td
/F1.0 10.5 Tf
-<323738> Tj
+<323739> Tj
ET
0.0 0.0 0.0 SCN
@@ -2201,7 +2201,7 @@ ET
BT
529.4315 572.916 Td
/F1.0 10.5 Tf
-<323738> Tj
+<323739> Tj
ET
0.0 0.0 0.0 SCN
@@ -2241,7 +2241,7 @@ ET
BT
529.4315 554.436 Td
/F1.0 10.5 Tf
-<323830> Tj
+<323831> Tj
ET
0.0 0.0 0.0 SCN
@@ -2281,7 +2281,7 @@ ET
BT
529.4315 535.956 Td
/F1.0 10.5 Tf
-<323831> Tj
+<323832> Tj
ET
0.0 0.0 0.0 SCN
@@ -2321,7 +2321,7 @@ ET
BT
529.4315 517.476 Td
/F1.0 10.5 Tf
-<323832> Tj
+<323833> Tj
ET
0.0 0.0 0.0 SCN
@@ -2361,7 +2361,7 @@ ET
BT
529.4315 498.996 Td
/F1.0 10.5 Tf
-<323832> Tj
+<323833> Tj
ET
0.0 0.0 0.0 SCN
@@ -2401,7 +2401,7 @@ ET
BT
529.4315 480.516 Td
/F1.0 10.5 Tf
-<323832> Tj
+<323833> Tj
ET
0.0 0.0 0.0 SCN
@@ -2441,7 +2441,7 @@ ET
BT
529.4315 462.036 Td
/F1.0 10.5 Tf
-<323834> Tj
+<323835> Tj
ET
0.0 0.0 0.0 SCN
@@ -2481,7 +2481,7 @@ ET
BT
529.4315 443.556 Td
/F1.0 10.5 Tf
-<323834> Tj
+<323835> Tj
ET
0.0 0.0 0.0 SCN
@@ -2521,7 +2521,7 @@ ET
BT
529.4315 425.076 Td
/F1.0 10.5 Tf
-<323835> Tj
+<323836> Tj
ET
0.0 0.0 0.0 SCN
@@ -2561,7 +2561,7 @@ ET
BT
529.4315 406.596 Td
/F1.0 10.5 Tf
-<323838> Tj
+<323839> Tj
ET
0.0 0.0 0.0 SCN
@@ -2601,7 +2601,7 @@ ET
BT
529.4315 388.116 Td
/F1.0 10.5 Tf
-<323930> Tj
+<323931> Tj
ET
0.0 0.0 0.0 SCN
@@ -2641,7 +2641,7 @@ ET
BT
529.4315 369.636 Td
/F1.0 10.5 Tf
-<323930> Tj
+<323931> Tj
ET
0.0 0.0 0.0 SCN
@@ -2681,7 +2681,7 @@ ET
BT
529.4315 351.156 Td
/F1.0 10.5 Tf
-<323938> Tj
+<323939> Tj
ET
0.0 0.0 0.0 SCN
@@ -2721,7 +2721,7 @@ ET
BT
529.4315 332.676 Td
/F1.0 10.5 Tf
-<333030> Tj
+<333031> Tj
ET
0.0 0.0 0.0 SCN
@@ -2761,7 +2761,7 @@ ET
BT
529.4315 314.196 Td
/F1.0 10.5 Tf
-<333131> Tj
+<333132> Tj
ET
0.0 0.0 0.0 SCN
@@ -2801,7 +2801,7 @@ ET
BT
529.4315 295.716 Td
/F1.0 10.5 Tf
-<333131> Tj
+<333132> Tj
ET
0.0 0.0 0.0 SCN
@@ -2841,7 +2841,7 @@ ET
BT
529.4315 277.236 Td
/F1.0 10.5 Tf
-<333131> Tj
+<333132> Tj
ET
0.0 0.0 0.0 SCN
@@ -2881,7 +2881,7 @@ ET
BT
529.4315 258.756 Td
/F1.0 10.5 Tf
-<333131> Tj
+<333132> Tj
ET
0.0 0.0 0.0 SCN
@@ -2921,7 +2921,7 @@ ET
BT
529.4315 240.276 Td
/F1.0 10.5 Tf
-<333133> Tj
+<333134> Tj
ET
0.0 0.0 0.0 SCN
@@ -2961,7 +2961,7 @@ ET
BT
529.4315 221.796 Td
/F1.0 10.5 Tf
-<333135> Tj
+<333136> Tj
ET
0.0 0.0 0.0 SCN
@@ -3001,7 +3001,7 @@ ET
BT
529.4315 184.836 Td
/F1.0 10.5 Tf
-<333234> Tj
+<333235> Tj
ET
0.0 0.0 0.0 SCN
@@ -3041,7 +3041,7 @@ ET
BT
529.4315 166.356 Td
/F1.0 10.5 Tf
-<333331> Tj
+<333332> Tj
ET
0.0 0.0 0.0 SCN
@@ -3081,7 +3081,7 @@ ET
BT
529.4315 147.876 Td
/F1.0 10.5 Tf
-<333432> Tj
+<333433> Tj
ET
0.0 0.0 0.0 SCN
@@ -3121,7 +3121,7 @@ ET
BT
529.4315 129.396 Td
/F1.0 10.5 Tf
-<333432> Tj
+<333433> Tj
ET
0.0 0.0 0.0 SCN
@@ -3161,7 +3161,7 @@ ET
BT
529.4315 110.916 Td
/F1.0 10.5 Tf
-<333433> Tj
+<333434> Tj
ET
0.0 0.0 0.0 SCN
@@ -3201,7 +3201,7 @@ ET
BT
529.4315 92.436 Td
/F1.0 10.5 Tf
-<333433> Tj
+<333434> Tj
ET
0.0 0.0 0.0 SCN
@@ -3241,7 +3241,7 @@ ET
BT
529.4315 73.956 Td
/F1.0 10.5 Tf
-<333433> Tj
+<333434> Tj
ET
0.0 0.0 0.0 SCN
@@ -3281,7 +3281,7 @@ ET
BT
529.4315 55.476 Td
/F1.0 10.5 Tf
-<333435> Tj
+<333436> Tj
ET
0.0 0.0 0.0 SCN
@@ -3303,7 +3303,7 @@ endobj
/Font << /F1.0 8 0 R
>>
>>
-/Annots [1390 0 R 1391 0 R 1392 0 R 1393 0 R 1394 0 R 1395 0 R 1396 0 R 1397 0 R 1398 0 R 1399 0 R 1400 0 R 1401 0 R 1402 0 R 1403 0 R 1404 0 R 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1413 0 R 1414 0 R 1415 0 R 1416 0 R 1417 0 R 1418 0 R 1419 0 R 1420 0 R 1421 0 R 1422 0 R 1423 0 R 1424 0 R 1425 0 R 1426 0 R 1427 0 R 1428 0 R 1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1434 0 R 1435 0 R 1436 0 R 1437 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R 1442 0 R 1443 0 R 1444 0 R 1445 0 R 1446 0 R 1447 0 R 1448 0 R 1449 0 R 1450 0 R 1451 0 R 1452 0 R 1453 0 R 1454 0 R 1455 0 R 1456 0 R 1457 0 R 1458 0 R 1459 0 R 1460 0 R 1461 0 R 1462 0 R 1463 0 R 1464 0 R 1465 0 R 1466 0 R 1467 0 R 1468 0 R 1469 0 R 1470 0 R]
+/Annots [1392 0 R 1393 0 R 1394 0 R 1395 0 R 1396 0 R 1397 0 R 1398 0 R 1399 0 R 1400 0 R 1401 0 R 1402 0 R 1403 0 R 1404 0 R 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1413 0 R 1414 0 R 1415 0 R 1416 0 R 1417 0 R 1418 0 R 1419 0 R 1420 0 R 1421 0 R 1422 0 R 1423 0 R 1424 0 R 1425 0 R 1426 0 R 1427 0 R 1428 0 R 1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1434 0 R 1435 0 R 1436 0 R 1437 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R 1442 0 R 1443 0 R 1444 0 R 1445 0 R 1446 0 R 1447 0 R 1448 0 R 1449 0 R 1450 0 R 1451 0 R 1452 0 R 1453 0 R 1454 0 R 1455 0 R 1456 0 R 1457 0 R 1458 0 R 1459 0 R 1460 0 R 1461 0 R 1462 0 R 1463 0 R 1464 0 R 1465 0 R 1466 0 R 1467 0 R 1468 0 R 1469 0 R 1470 0 R 1471 0 R 1472 0 R]
>>
endobj
14 0 obj
@@ -3348,7 +3348,7 @@ ET
BT
529.4315 794.676 Td
/F1.0 10.5 Tf
-<333435> Tj
+<333436> Tj
ET
0.0 0.0 0.0 SCN
@@ -3388,7 +3388,7 @@ ET
BT
529.4315 776.196 Td
/F1.0 10.5 Tf
-<333438> Tj
+<333439> Tj
ET
0.0 0.0 0.0 SCN
@@ -3428,7 +3428,7 @@ ET
BT
529.4315 757.716 Td
/F1.0 10.5 Tf
-<333439> Tj
+<333530> Tj
ET
0.0 0.0 0.0 SCN
@@ -3468,7 +3468,7 @@ ET
BT
529.4315 739.236 Td
/F1.0 10.5 Tf
-<333439> Tj
+<333530> Tj
ET
0.0 0.0 0.0 SCN
@@ -3508,7 +3508,7 @@ ET
BT
529.4315 720.756 Td
/F1.0 10.5 Tf
-<333439> Tj
+<333530> Tj
ET
0.0 0.0 0.0 SCN
@@ -3548,7 +3548,7 @@ ET
BT
529.4315 702.276 Td
/F1.0 10.5 Tf
-<333439> Tj
+<333530> Tj
ET
0.0 0.0 0.0 SCN
@@ -3570,7 +3570,7 @@ endobj
/Font << /F1.0 8 0 R
>>
>>
-/Annots [1471 0 R 1472 0 R 1473 0 R 1474 0 R 1475 0 R 1476 0 R 1477 0 R 1478 0 R 1479 0 R 1480 0 R 1481 0 R 1482 0 R]
+/Annots [1473 0 R 1474 0 R 1475 0 R 1476 0 R 1477 0 R 1478 0 R 1479 0 R 1480 0 R 1481 0 R 1482 0 R 1483 0 R 1484 0 R]
>>
endobj
16 0 obj
@@ -3683,7 +3683,7 @@ endobj
>>
endobj
20 0 obj
-<< /Kids [1177 0 R 1178 0 R]
+<< /Kids [1179 0 R 1180 0 R]
>>
endobj
21 0 obj
@@ -3693,11 +3693,11 @@ endobj
<< /Type /Font
/BaseFont /ede83f+NotoSerif-Bold
/Subtype /TrueType
-/FontDescriptor 1579 0 R
+/FontDescriptor 1581 0 R
/FirstChar 32
/LastChar 255
-/Widths 1581 0 R
-/ToUnicode 1580 0 R
+/Widths 1583 0 R
+/ToUnicode 1582 0 R
>>
endobj
23 0 obj
@@ -4174,11 +4174,11 @@ endobj
<< /Type /Font
/BaseFont /e7aef3+mplus1mn-regular
/Subtype /TrueType
-/FontDescriptor 1583 0 R
+/FontDescriptor 1585 0 R
/FirstChar 32
/LastChar 255
-/Widths 1585 0 R
-/ToUnicode 1584 0 R
+/Widths 1587 0 R
+/ToUnicode 1586 0 R
>>
endobj
34 0 obj
@@ -5377,11 +5377,11 @@ endobj
<< /Type /Font
/BaseFont /918d14+FontAwesome5FreeSolid
/Subtype /TrueType
-/FontDescriptor 1587 0 R
+/FontDescriptor 1589 0 R
/FirstChar 32
/LastChar 255
-/Widths 1589 0 R
-/ToUnicode 1588 0 R
+/Widths 1591 0 R
+/ToUnicode 1590 0 R
>>
endobj
47 0 obj
@@ -6048,11 +6048,11 @@ endobj
<< /Type /Font
/BaseFont /fcbc6b+NotoSerif-Italic
/Subtype /TrueType
-/FontDescriptor 1591 0 R
+/FontDescriptor 1593 0 R
/FirstChar 32
/LastChar 255
-/Widths 1593 0 R
-/ToUnicode 1592 0 R
+/Widths 1595 0 R
+/ToUnicode 1594 0 R
>>
endobj
51 0 obj
@@ -8615,11 +8615,11 @@ endobj
<< /Type /Font
/BaseFont /e324a6+mplus1mn-regular
/Subtype /TrueType
-/FontDescriptor 1595 0 R
+/FontDescriptor 1597 0 R
/FirstChar 32
/LastChar 255
-/Widths 1597 0 R
-/ToUnicode 1596 0 R
+/Widths 1599 0 R
+/ToUnicode 1598 0 R
>>
endobj
65 0 obj
@@ -9470,11 +9470,11 @@ endobj
<< /Type /Font
/BaseFont /ad6773+FontAwesome5FreeRegular
/Subtype /TrueType
-/FontDescriptor 1599 0 R
+/FontDescriptor 1601 0 R
/FirstChar 32
/LastChar 255
-/Widths 1601 0 R
-/ToUnicode 1600 0 R
+/Widths 1603 0 R
+/ToUnicode 1602 0 R
>>
endobj
69 0 obj
@@ -20081,7 +20081,7 @@ endobj
endobj
121 0 obj
<< /Limits [(additional-application-properties) (contract-dsl-custom-methods)]
-/Names [(additional-application-properties) 1312 0 R (by-convention) 937 0 R (by-convention-2) 1010 0 R (by-mapping) 940 0 R (by-mapping-2) 1011 0 R (coded-dsl) 467 0 R (common-application-properties) 1304 0 R (contract-common-top-elements) 310 0 R (contract-customization) 1072 0 R (contract-dsl) 283 0 R (contract-dsl-async) 497 0 R (contract-dsl-consumer-producer) 575 0 R (contract-dsl-custom-methods) 439 0 R]
+/Names [(additional-application-properties) 1314 0 R (by-convention) 939 0 R (by-convention-2) 1012 0 R (by-mapping) 942 0 R (by-mapping-2) 1013 0 R (coded-dsl) 467 0 R (common-application-properties) 1306 0 R (contract-common-top-elements) 310 0 R (contract-customization) 1074 0 R (contract-dsl) 283 0 R (contract-dsl-async) 497 0 R (contract-dsl-consumer-producer) 575 0 R (contract-dsl-custom-methods) 439 0 R]
>>
endobj
122 0 obj
@@ -22291,11 +22291,11 @@ endobj
<< /Type /Font
/BaseFont /a102c2+mplus-1p-regular
/Subtype /TrueType
-/FontDescriptor 1603 0 R
+/FontDescriptor 1605 0 R
/FirstChar 32
/LastChar 255
-/Widths 1605 0 R
-/ToUnicode 1604 0 R
+/Widths 1607 0 R
+/ToUnicode 1606 0 R
>>
endobj
131 0 obj
@@ -23605,7 +23605,7 @@ endobj
[137 0 R /XYZ 0 165.31 null]
endobj
139 0 obj
-<< /Length 10856
+<< /Length 10693
>>
stream
q
@@ -24133,10 +24133,10 @@ q
70.24 351.15 m
543.04 351.15 l
545.2491 351.15 547.04 349.3591 547.04 347.15 c
-547.04 220.71 l
-547.04 218.5009 545.2491 216.71 543.04 216.71 c
-70.24 216.71 l
-68.0309 216.71 66.24 218.5009 66.24 220.71 c
+547.04 235.45 l
+547.04 233.2409 545.2491 231.45 543.04 231.45 c
+70.24 231.45 l
+68.0309 231.45 66.24 233.2409 66.24 235.45 c
66.24 347.15 l
66.24 349.3591 68.0309 351.15 70.24 351.15 c
h
@@ -24146,10 +24146,10 @@ f
70.24 351.15 m
543.04 351.15 l
545.2491 351.15 547.04 349.3591 547.04 347.15 c
-547.04 220.71 l
-547.04 218.5009 545.2491 216.71 543.04 216.71 c
-70.24 216.71 l
-68.0309 216.71 66.24 218.5009 66.24 220.71 c
+547.04 235.45 l
+547.04 233.2409 545.2491 231.45 543.04 231.45 c
+70.24 231.45 l
+68.0309 231.45 66.24 233.2409 66.24 235.45 c
66.24 347.15 l
66.24 349.3591 68.0309 351.15 70.24 351.15 c
h
@@ -24160,10 +24160,10 @@ q
82.24 339.15 m
531.04 339.15 l
533.2491 339.15 535.04 337.3591 535.04 335.15 c
-535.04 232.71 l
-535.04 230.5009 533.2491 228.71 531.04 228.71 c
-82.24 228.71 l
-80.0309 228.71 78.24 230.5009 78.24 232.71 c
+535.04 247.45 l
+535.04 245.2409 533.2491 243.45 531.04 243.45 c
+82.24 243.45 l
+80.0309 243.45 78.24 245.2409 78.24 247.45 c
78.24 335.15 l
78.24 337.3591 80.0309 339.15 82.24 339.15 c
h
@@ -24173,10 +24173,10 @@ f
82.24 339.15 m
531.04 339.15 l
533.2491 339.15 535.04 337.3591 535.04 335.15 c
-535.04 232.71 l
-535.04 230.5009 533.2491 228.71 531.04 228.71 c
-82.24 228.71 l
-80.0309 228.71 78.24 230.5009 78.24 232.71 c
+535.04 247.45 l
+535.04 245.2409 533.2491 243.45 531.04 243.45 c
+82.24 243.45 l
+80.0309 243.45 78.24 245.2409 78.24 247.45 c
78.24 335.15 l
78.24 337.3591 80.0309 339.15 82.24 339.15 c
h
@@ -24188,7 +24188,7 @@ Q
BT
89.24 316.325 Td
/F3.0 11 Tf
-<4052756e5769746828537072696e6752756e6e65722e636c61737329> Tj
+<40537072696e67426f6f745465737428776562456e7669726f6e6d656e74203d20576562456e7669726f6e6d656e742e4e4f4e4529> Tj
ET
0.0 0.0 0.0 SCN
@@ -24199,7 +24199,7 @@ ET
BT
89.24 301.585 Td
/F3.0 11 Tf
-<40537072696e67426f6f745465737428776562456e7669726f6e6d656e74203d20576562456e7669726f6e6d656e742e4e4f4e4529> Tj
+<404175746f436f6e6669677572655374756252756e6e657228696473203d207b> Tj
ET
0.0 0.0 0.0 SCN
@@ -24210,7 +24210,7 @@ ET
BT
89.24 286.845 Td
/F3.0 11 Tf
-<404175746f436f6e6669677572655374756252756e6e657228696473203d207b> Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -24221,7 +24221,7 @@ ET
BT
89.24 272.105 Td
/F3.0 11 Tf
- Tj
+<5374756252756e6e657250726f706572746965732e53747562734d6f64652e4c4f43414c29> Tj
ET
0.0 0.0 0.0 SCN
@@ -24232,17 +24232,6 @@ ET
BT
89.24 257.365 Td
/F3.0 11 Tf
-<5374756252756e6e657250726f706572746965732e53747562734d6f64652e4c4f43414c29> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-89.24 242.625 Td
-/F3.0 11 Tf
<7075626c696320636c617373204c6f616e4170706c69636174696f6e536572766963655465737473207b> Tj
ET
@@ -24252,7 +24241,7 @@ ET
0.2 0.2 0.2 SCN
BT
-48.24 186.746 Td
+48.24 201.486 Td
/F1.0 10.5 Tf
[<4e6f77> 69.8242 <2c207768656e20796f752072756e20796f75722074657374732c20796f752073656520736f6d657468696e67206c696b> 20.0195 <652074686520666f6c6c6f77696e67206f757470757420696e20746865206c6f67733a>] TJ
ET
@@ -26140,7 +26129,7 @@ endobj
>>
endobj
151 0 obj
-<< /Length 8537
+<< /Length 8577
>>
stream
q
@@ -26397,7 +26386,7 @@ ET
BT
71.24 491.005 Td
/F3.0 11 Tf
-<696d706f7274206f72672e6a756e69742e4265666f72653b> Tj
+<696d706f7274206f72672e6a756e69742e6a7570697465722e6170692e4265666f7265456163683b> Tj
ET
0.0 0.0 0.0 SCN
@@ -26419,7 +26408,7 @@ ET
BT
71.24 432.045 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -47397,7 +47386,7 @@ endobj
endobj
325 0 obj
<< /Limits [(customization-custom-contract-converter) (customization-test-dep)]
-/Names [(customization-custom-contract-converter) 1106 0 R (customization-custom-stub-downloader) 1128 0 R (customization-custom-stub-generator) 1116 0 R (customization-custom-stub-runner) 1120 0 R (customization-custom-test-generator) 1111 0 R (customization-customization) 1073 0 R (customization-extending) 1074 0 R (customization-extending-common-jar) 1077 0 R (customization-pluggable-architecture) 1105 0 R (customization-plugin-dep) 1089 0 R (customization-referencing) 1092 0 R (customization-test-dep) 1088 0 R]
+/Names [(customization-custom-contract-converter) 1108 0 R (customization-custom-stub-downloader) 1130 0 R (customization-custom-stub-generator) 1118 0 R (customization-custom-stub-runner) 1122 0 R (customization-custom-test-generator) 1113 0 R (customization-customization) 1075 0 R (customization-extending) 1076 0 R (customization-extending-common-jar) 1079 0 R (customization-pluggable-architecture) 1107 0 R (customization-plugin-dep) 1091 0 R (customization-referencing) 1094 0 R (customization-test-dep) 1090 0 R]
>>
endobj
326 0 obj
@@ -70402,7 +70391,7 @@ endobj
endobj
440 0 obj
<< /Limits [(contract-dsl-optional-params) (contract-yml)]
-/Names [(contract-dsl-optional-params) 428 0 R (contract-dsl-output-triggered-message) 572 0 R (contract-dsl-output-triggered-method) 567 0 R (contract-dsl-passing-values-from-files) 331 0 R (contract-dsl-referencing-request-from-response) 447 0 R (contract-dsl-regex) 402 0 R (contract-dsl-regex-limitations) 423 0 R (contract-dsl-request) 350 0 R (contract-dsl-response) 389 0 R (contract-dsl-rest-docs) 1287 0 R (contract-dsl-xml) 504 0 R (contract-groovy) 296 0 R (contract-java) 297 0 R (contract-kotlin) 300 0 R (contract-limitations) 307 0 R (contract-stateful-contracts) 524 0 R (contract-yml) 305 0 R]
+/Names [(contract-dsl-optional-params) 428 0 R (contract-dsl-output-triggered-message) 572 0 R (contract-dsl-output-triggered-method) 567 0 R (contract-dsl-passing-values-from-files) 331 0 R (contract-dsl-referencing-request-from-response) 447 0 R (contract-dsl-regex) 402 0 R (contract-dsl-regex-limitations) 423 0 R (contract-dsl-request) 350 0 R (contract-dsl-response) 389 0 R (contract-dsl-rest-docs) 1289 0 R (contract-dsl-xml) 504 0 R (contract-groovy) 296 0 R (contract-java) 297 0 R (contract-kotlin) 300 0 R (contract-limitations) 307 0 R (contract-stateful-contracts) 524 0 R (contract-yml) 305 0 R]
>>
endobj
441 0 obj
@@ -130955,7 +130944,7 @@ endobj
endobj
759 0 obj
<< /Limits [(features-stub-runner-snapshot-versions) (features-wiremock-spring-mvc-mocks)]
-/Names [(features-stub-runner-snapshot-versions) 723 0 R (features-stub-runner-stub-runner-stub-ids) 855 0 R (features-stub-runner-stubs-per-consumer) 831 0 R (features-stub-runner-stubs-protocol) 837 0 R (features-stub-runner-viewing) 761 0 R (features-whats-next) 886 0 R (features-wiremock) 860 0 R (features-wiremock-junit-rule) 870 0 R (features-wiremock-registering-stubs) 865 0 R (features-wiremock-relaxed-ssl) 871 0 R (features-wiremock-spring-mvc-mocks) 874 0 R]
+/Names [(features-stub-runner-snapshot-versions) 723 0 R (features-stub-runner-stub-runner-stub-ids) 855 0 R (features-stub-runner-stubs-per-consumer) 831 0 R (features-stub-runner-stubs-protocol) 837 0 R (features-stub-runner-viewing) 761 0 R (features-whats-next) 888 0 R (features-wiremock) 860 0 R (features-wiremock-junit-rule) 870 0 R (features-wiremock-registering-stubs) 865 0 R (features-wiremock-relaxed-ssl) 875 0 R (features-wiremock-spring-mvc-mocks) 876 0 R]
>>
endobj
760 0 obj
@@ -149613,7 +149602,7 @@ endobj
>>
endobj
858 0 obj
-<< /Length 13290
+<< /Length 13138
>>
stream
q
@@ -149874,10 +149863,10 @@ q
52.24 636.15 m
543.04 636.15 l
545.2491 636.15 547.04 634.3591 547.04 632.15 c
-547.04 196.17 l
-547.04 193.9609 545.2491 192.17 543.04 192.17 c
-52.24 192.17 l
-50.0309 192.17 48.24 193.9609 48.24 196.17 c
+547.04 210.91 l
+547.04 208.7009 545.2491 206.91 543.04 206.91 c
+52.24 206.91 l
+50.0309 206.91 48.24 208.7009 48.24 210.91 c
48.24 632.15 l
48.24 634.3591 50.0309 636.15 52.24 636.15 c
h
@@ -149887,10 +149876,10 @@ f
52.24 636.15 m
543.04 636.15 l
545.2491 636.15 547.04 634.3591 547.04 632.15 c
-547.04 196.17 l
-547.04 193.9609 545.2491 192.17 543.04 192.17 c
-52.24 192.17 l
-50.0309 192.17 48.24 193.9609 48.24 196.17 c
+547.04 210.91 l
+547.04 208.7009 545.2491 206.91 543.04 206.91 c
+52.24 206.91 l
+50.0309 206.91 48.24 208.7009 48.24 210.91 c
48.24 632.15 l
48.24 634.3591 50.0309 636.15 52.24 636.15 c
h
@@ -149901,10 +149890,10 @@ q
64.24 624.15 m
531.04 624.15 l
533.2491 624.15 535.04 622.3591 535.04 620.15 c
-535.04 208.17 l
-535.04 205.9609 533.2491 204.17 531.04 204.17 c
-64.24 204.17 l
-62.0309 204.17 60.24 205.9609 60.24 208.17 c
+535.04 222.91 l
+535.04 220.7009 533.2491 218.91 531.04 218.91 c
+64.24 218.91 l
+62.0309 218.91 60.24 220.7009 60.24 222.91 c
60.24 620.15 l
60.24 622.3591 62.0309 624.15 64.24 624.15 c
h
@@ -149914,10 +149903,10 @@ f
64.24 624.15 m
531.04 624.15 l
533.2491 624.15 535.04 622.3591 535.04 620.15 c
-535.04 208.17 l
-535.04 205.9609 533.2491 204.17 531.04 204.17 c
-64.24 204.17 l
-62.0309 204.17 60.24 205.9609 60.24 208.17 c
+535.04 222.91 l
+535.04 220.7009 533.2491 218.91 531.04 218.91 c
+64.24 218.91 l
+62.0309 218.91 60.24 220.7009 60.24 222.91 c
60.24 620.15 l
60.24 622.3591 62.0309 624.15 64.24 624.15 c
h
@@ -149929,7 +149918,7 @@ Q
BT
71.24 601.325 Td
/F3.0 11 Tf
-<4052756e5769746828537072696e6752756e6e65722e636c61737329> Tj
+<40537072696e67426f6f745465737428776562456e7669726f6e6d656e74203d20576562456e7669726f6e6d656e742e52414e444f4d5f504f525429> Tj
ET
0.0 0.0 0.0 SCN
@@ -149940,7 +149929,7 @@ ET
BT
71.24 586.585 Td
/F3.0 11 Tf
-<40537072696e67426f6f745465737428776562456e7669726f6e6d656e74203d20576562456e7669726f6e6d656e742e52414e444f4d5f504f525429> Tj
+<404175746f436f6e666967757265576972654d6f636b28706f7274203d203029> Tj
ET
0.0 0.0 0.0 SCN
@@ -149951,17 +149940,6 @@ ET
BT
71.24 571.845 Td
/F3.0 11 Tf
-<404175746f436f6e666967757265576972654d6f636b28706f7274203d203029> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 557.105 Td
-/F3.0 11 Tf
<7075626c696320636c61737320576972656d6f636b466f72446f63735465737473207b> Tj
ET
@@ -149971,7 +149949,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 527.625 Td
+71.24 542.365 Td
/F3.0 11 Tf
Tj
ET
@@ -149982,7 +149960,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 512.885 Td
+71.24 527.625 Td
/F3.0 11 Tf
Tj
ET
@@ -149993,7 +149971,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 498.145 Td
+71.24 512.885 Td
/F3.0 11 Tf
Tj
ET
@@ -150004,9 +149982,9 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 468.665 Td
+71.24 483.405 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -150015,7 +149993,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 453.925 Td
+71.24 468.665 Td
/F3.0 11 Tf
Tj
ET
@@ -150026,7 +150004,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 439.185 Td
+71.24 453.925 Td
/F3.0 11 Tf
Tj
ET
@@ -150037,7 +150015,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 424.445 Td
+71.24 439.185 Td
/F3.0 11 Tf
Tj
ET
@@ -150048,7 +150026,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 409.705 Td
+71.24 424.445 Td
/F3.0 11 Tf
Tj
ET
@@ -150059,7 +150037,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 380.225 Td
+71.24 394.965 Td
/F3.0 11 Tf
Tj
ET
@@ -150070,7 +150048,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 365.485 Td
+71.24 380.225 Td
/F3.0 11 Tf
Tj
ET
@@ -150081,7 +150059,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 350.745 Td
+71.24 365.485 Td
/F3.0 11 Tf
Tj
ET
@@ -150092,7 +150070,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 336.005 Td
+71.24 350.745 Td
/F3.0 11 Tf
Tj
ET
@@ -150103,7 +150081,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 321.265 Td
+71.24 336.005 Td
/F3.0 11 Tf
Tj
ET
@@ -150114,7 +150092,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 306.525 Td
+71.24 321.265 Td
/F3.0 11 Tf
Tj
ET
@@ -150125,7 +150103,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 291.785 Td
+71.24 306.525 Td
/F3.0 11 Tf
<576f726c6421222929293b> Tj
ET
@@ -150136,7 +150114,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 277.045 Td
+71.24 291.785 Td
/F3.0 11 Tf
Tj
ET
@@ -150147,7 +150125,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 262.305 Td
+71.24 277.045 Td
/F3.0 11 Tf
Tj
ET
@@ -150158,7 +150136,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 247.565 Td
+71.24 262.305 Td
/F3.0 11 Tf
Tj
ET
@@ -150169,7 +150147,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 218.085 Td
+71.24 232.825 Td
/F3.0 11 Tf
<7d> Tj
ET
@@ -150182,7 +150160,7 @@ ET
1.2036 Tw
BT
-48.24 168.206 Td
+48.24 182.946 Td
/F1.0 10.5 Tf
[<54> 29.7852 <6f20737461727420746865207374756220736572766572206f6e206120646966666572656e7420706f72742c207573652028666f72206578616d706c65292c20>] TJ
ET
@@ -150197,7 +150175,7 @@ ET
1.2036 Tw
BT
-371.165 168.206 Td
+371.165 182.946 Td
/F3.0 10.5 Tf
<404175746f436f6e666967757265576972654d6f636b28706f72743d3939393929> Tj
ET
@@ -150212,7 +150190,7 @@ ET
1.2036 Tw
BT
-544.415 168.206 Td
+544.415 182.946 Td
/F1.0 10.5 Tf
<2e> Tj
ET
@@ -150227,7 +150205,7 @@ ET
1.9441 Tw
BT
-48.24 152.426 Td
+48.24 167.166 Td
/F1.0 10.5 Tf
[<46> 40.0391 <6f7220612072> 20.0195 <616e646f6d20706f72742c2075736520612076616c7565206f6620>] TJ
ET
@@ -150242,7 +150220,7 @@ ET
1.9441 Tw
BT
-232.1489 152.426 Td
+232.1489 167.166 Td
/F3.0 10.5 Tf
<30> Tj
ET
@@ -150257,7 +150235,7 @@ ET
1.9441 Tw
BT
-237.3989 152.426 Td
+237.3989 167.166 Td
/F1.0 10.5 Tf
<2e2054686520737475622073657276657220706f72742063616e20626520626f756e6420696e207468652074657374206170706c69636174696f6e> Tj
ET
@@ -150272,7 +150250,7 @@ ET
0.0884 Tw
BT
-48.24 136.646 Td
+48.24 151.386 Td
/F1.0 10.5 Tf
[<636f6e746578742077697468207468652022776972656d6f636b2e7365727665722e706f7274222070726f7065727479> 89.8438 <2e205573696e6720>] TJ
ET
@@ -150287,7 +150265,7 @@ ET
0.0884 Tw
BT
-331.7575 136.646 Td
+331.7575 151.386 Td
/F3.0 10.5 Tf
<404175746f436f6e666967757265576972654d6f636b> Tj
ET
@@ -150302,7 +150280,7 @@ ET
0.0884 Tw
BT
-447.2575 136.646 Td
+447.2575 151.386 Td
/F1.0 10.5 Tf
<20616464732061206265616e206f662074797065> Tj
ET
@@ -150317,7 +150295,7 @@ ET
1.8198 Tw
BT
-48.24 120.866 Td
+48.24 135.606 Td
ET
@@ -150330,7 +150308,7 @@ ET
1.8198 Tw
BT
-48.24 120.866 Td
+48.24 135.606 Td
/F3.0 10.5 Tf
<576972656d6f636b436f6e66696775726174696f6e> Tj
ET
@@ -150345,7 +150323,7 @@ ET
1.8198 Tw
BT
-158.49 120.866 Td
+158.49 135.606 Td
/F1.0 10.5 Tf
<20746f20796f75722074657374206170706c69636174696f6e20636f6e746578742c20776865726520697420697320636163686564206265747765656e206d6574686f647320616e64> Tj
ET
@@ -150360,7 +150338,7 @@ ET
0.334 Tw
BT
-48.24 105.086 Td
+48.24 119.826 Td
/F1.0 10.5 Tf
[<636c617373657320686176696e67207468652073616d6520636f6e746578742e205468652073616d65206973207472756520666f7220537072696e6720696e74656772> 20.0195 <6174696f6e2074657374732e20416c736f2c20796f752063616e20696e6a6563742061>] TJ
ET
@@ -150375,7 +150353,7 @@ ET
0.879 Tw
BT
-48.24 89.306 Td
+48.24 104.046 Td
/F1.0 10.5 Tf
<6265616e206f66207479706520> Tj
ET
@@ -150390,7 +150368,7 @@ ET
0.879 Tw
BT
-115.3681 89.306 Td
+115.3681 104.046 Td
/F3.0 10.5 Tf
<576972654d6f636b536572766572> Tj
ET
@@ -150405,7 +150383,7 @@ ET
0.879 Tw
BT
-188.8681 89.306 Td
+188.8681 104.046 Td
/F1.0 10.5 Tf
<20696e746f20796f757220746573742e20546865207265676973746572656420576972654d6f636b2073657276657220697320726573657420616674657220656163682074657374> Tj
ET
@@ -150420,7 +150398,7 @@ ET
0.8573 Tw
BT
-48.24 73.526 Td
+48.24 88.266 Td
/F1.0 10.5 Tf
<636c6173732c20686f77657665722c20696620796f75206e65656420746f20726573657420697420616674657220656163682074657374206d6574686f642c206a757374207365742074686520> Tj
ET
@@ -150435,7 +150413,7 @@ ET
0.8573 Tw
BT
-421.04 73.526 Td
+421.04 88.266 Td
/F3.0 10.5 Tf
<776972656d6f636b2e72657365742d6d617070696e67732d> Tj
ET
@@ -150448,7 +150426,7 @@ ET
0.6941 0.1294 0.2745 SCN
BT
-48.24 57.746 Td
+48.24 72.486 Td
/F3.0 10.5 Tf
<61667465722d656163682d74657374> Tj
ET
@@ -150459,7 +150437,7 @@ ET
0.2 0.2 0.2 SCN
BT
-126.99 57.746 Td
+126.99 72.486 Td
/F1.0 10.5 Tf
<2070726f706572747920746f20> Tj
ET
@@ -150470,7 +150448,7 @@ ET
0.6941 0.1294 0.2745 SCN
BT
-188.961 57.746 Td
+188.961 72.486 Td
/F3.0 10.5 Tf
<74727565> Tj
ET
@@ -150481,7 +150459,7 @@ ET
0.2 0.2 0.2 SCN
BT
-209.961 57.746 Td
+209.961 72.486 Td
/F1.0 10.5 Tf
<2e> Tj
ET
@@ -151625,18 +151603,18 @@ endobj
<< /Type /Font
/BaseFont /5c9ad9+mplus1mn-bold
/Subtype /TrueType
-/FontDescriptor 1607 0 R
+/FontDescriptor 1609 0 R
/FirstChar 32
/LastChar 255
-/Widths 1609 0 R
-/ToUnicode 1608 0 R
+/Widths 1611 0 R
+/ToUnicode 1610 0 R
>>
endobj
867 0 obj
[864 0 R /XYZ 0 223.77 null]
endobj
868 0 obj
-<< /Length 11290
+<< /Length 3968
>>
stream
q
@@ -151946,435 +151924,6 @@ BT
<666f6c6c6f77696e67206578616d706c652073686f77733a> Tj
ET
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-q
-1.0 1.0 1.0 scn
-52.24 645.93 m
-543.04 645.93 l
-545.2491 645.93 547.04 644.1391 547.04 641.93 c
-547.04 146.99 l
-547.04 144.7809 545.2491 142.99 543.04 142.99 c
-52.24 142.99 l
-50.0309 142.99 48.24 144.7809 48.24 146.99 c
-48.24 641.93 l
-48.24 644.1391 50.0309 645.93 52.24 645.93 c
-h
-f
-0.9333 0.9333 0.9333 SCN
-0.75 w
-52.24 645.93 m
-543.04 645.93 l
-545.2491 645.93 547.04 644.1391 547.04 641.93 c
-547.04 146.99 l
-547.04 144.7809 545.2491 142.99 543.04 142.99 c
-52.24 142.99 l
-50.0309 142.99 48.24 144.7809 48.24 146.99 c
-48.24 641.93 l
-48.24 644.1391 50.0309 645.93 52.24 645.93 c
-h
-S
-Q
-q
-0.9608 0.9608 0.9608 scn
-64.24 633.93 m
-531.04 633.93 l
-533.2491 633.93 535.04 632.1391 535.04 629.93 c
-535.04 158.99 l
-535.04 156.7809 533.2491 154.99 531.04 154.99 c
-64.24 154.99 l
-62.0309 154.99 60.24 156.7809 60.24 158.99 c
-60.24 629.93 l
-60.24 632.1391 62.0309 633.93 64.24 633.93 c
-h
-f
-0.8 0.8 0.8 SCN
-0.75 w
-64.24 633.93 m
-531.04 633.93 l
-533.2491 633.93 535.04 632.1391 535.04 629.93 c
-535.04 158.99 l
-535.04 156.7809 533.2491 154.99 531.04 154.99 c
-64.24 154.99 l
-62.0309 154.99 60.24 156.7809 60.24 158.99 c
-60.24 629.93 l
-60.24 632.1391 62.0309 633.93 64.24 633.93 c
-h
-S
-Q
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 611.105 Td
-/F3.0 11 Tf
-<4052756e5769746828537072696e6752756e6e65722e636c61737329> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 596.365 Td
-/F3.0 11 Tf
-<40537072696e67426f6f745465737428776562456e7669726f6e6d656e74203d20576562456e7669726f6e6d656e742e52414e444f4d5f504f525429> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 581.625 Td
-/F3.0 11 Tf
-<7075626c696320636c61737320576972656d6f636b466f72446f6373436c61737352756c655465737473207b> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 552.145 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 537.405 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 522.665 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 507.925 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 493.185 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 463.705 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 448.965 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 434.225 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 404.745 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 390.005 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 375.265 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 360.525 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 331.045 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 316.305 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 301.565 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 286.825 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 272.085 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 257.345 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 242.605 Td
-/F3.0 11 Tf
-<576f726c6421222929293b> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 227.865 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 213.125 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 198.385 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 168.905 Td
-/F3.0 11 Tf
-<7d> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-48.24 119.026 Td
-/F1.0 10.5 Tf
-<54686520> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-BT
-69.66 119.026 Td
-/F3.0 10.5 Tf
-<40436c61737352756c65> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-122.16 119.026 Td
-/F1.0 10.5 Tf
-<206d65616e732074686174207468652073657276657220736875747320646f776e20616674657220616c6c20746865206d6574686f647320696e207468697320636c6173732068617665206265656e2072756e2e> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-48.24 84.526 Td
-/F2.0 13 Tf
-[<332e362e342e2052656c617865642053534c2056> 60.0586 <616c69646174696f6e20666f7220526573742054> 29.7852 <656d706c617465>] TJ
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-0.704 Tw
-
-BT
-48.24 57.966 Td
-/F1.0 10.5 Tf
-<576972654d6f636b206c65747320796f752073747562206120d2736563757265d320736572766572207769746820616e20> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-0.704 Tw
-
-BT
-304.056 57.966 Td
-/F3.0 10.5 Tf
-<6874747073> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-0.704 Tw
-
-BT
-330.306 57.966 Td
-/F1.0 10.5 Tf
-<2055524c2070726f746f636f6c2e20496620796f7572206170706c69636174696f6e2077616e747320746f> Tj
-ET
-
-
-0.0 Tw
0.0 0.0 0.0 SCN
0.0 0.0 0.0 scn
Q
@@ -152403,915 +151952,7 @@ endobj
[869 0 R /XYZ 0 738.55 null]
endobj
871 0 obj
-[869 0 R /XYZ 0 103.21 null]
-endobj
-872 0 obj
-<< /Length 13379
->>
-stream
-q
-/DeviceRGB cs
-0.2 0.2 0.2 scn
-/DeviceRGB CS
-0.2 0.2 0.2 SCN
-
-0.4578 Tw
-
-BT
-48.24 794.676 Td
-/F1.0 10.5 Tf
-[<636f6e74616374207468617420737475622073657276657220696e20616e20696e74656772> 20.0195 <6174696f6e20746573742c2069742077696c6c2066696e642074686174207468652053534c2063657274696669636174657320617265206e6f742076616c69642028746865>] TJ
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-0.8631 Tw
-
-BT
-48.24 778.896 Td
-/F1.0 10.5 Tf
-<757375616c2070726f626c656d20776974682073656c662d696e7374616c6c656420636572746966696361746573292e205468652062657374206f7074696f6e206973206f6674656e20746f2072652d636f6e6669677572652074686520636c69656e7420746f> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-1.0278 Tw
-
-BT
-48.24 763.116 Td
-/F1.0 10.5 Tf
-<75736520> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-1.0278 Tw
-
-BT
-68.9973 763.116 Td
-/F3.0 10.5 Tf
-<68747470> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-1.0278 Tw
-
-BT
-89.9973 763.116 Td
-/F1.0 10.5 Tf
-<2e2049662074686174206973206e6f7420616e206f7074696f6e2c20796f752063616e2061736b20537072696e6720746f20636f6e66696775726520616e204854545020636c69656e7420746861742069676e6f7265732053534c> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-48.24 747.336 Td
-/F1.0 10.5 Tf
-<76616c69646174696f6e206572726f72732028646f20736f206f6e6c7920666f722074657374732c206f6620636f75727365292e> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-0.0699 Tw
-
-BT
-48.24 719.556 Td
-/F1.0 10.5 Tf
-[<54> 29.7852 <6f206d616b> 20.0195 <65207468697320776f726b2077697468206d696e696d756d20667573732c20796f75206e65656420746f207573652074686520537072696e6720426f6f7420>] TJ
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-0.0699 Tw
-
-BT
-408.0061 719.556 Td
-/F3.0 10.5 Tf
-<5265737454656d706c6174654275696c646572> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-0.0699 Tw
-
-BT
-507.7561 719.556 Td
-/F1.0 10.5 Tf
-<20696e20796f7572> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-48.24 703.776 Td
-/F1.0 10.5 Tf
-<6170706c69636174696f6e2c2061732074686520666f6c6c6f77696e67206578616d706c652073686f77733a> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-q
-1.0 1.0 1.0 scn
-52.24 687.96 m
-543.04 687.96 l
-545.2491 687.96 547.04 686.1691 547.04 683.96 c
-547.04 587.0 l
-547.04 584.7909 545.2491 583.0 543.04 583.0 c
-52.24 583.0 l
-50.0309 583.0 48.24 584.7909 48.24 587.0 c
-48.24 683.96 l
-48.24 686.1691 50.0309 687.96 52.24 687.96 c
-h
-f
-0.9333 0.9333 0.9333 SCN
-0.75 w
-52.24 687.96 m
-543.04 687.96 l
-545.2491 687.96 547.04 686.1691 547.04 683.96 c
-547.04 587.0 l
-547.04 584.7909 545.2491 583.0 543.04 583.0 c
-52.24 583.0 l
-50.0309 583.0 48.24 584.7909 48.24 587.0 c
-48.24 683.96 l
-48.24 686.1691 50.0309 687.96 52.24 687.96 c
-h
-S
-Q
-q
-0.9608 0.9608 0.9608 scn
-64.24 675.96 m
-531.04 675.96 l
-533.2491 675.96 535.04 674.1691 535.04 671.96 c
-535.04 599.0 l
-535.04 596.7909 533.2491 595.0 531.04 595.0 c
-64.24 595.0 l
-62.0309 595.0 60.24 596.7909 60.24 599.0 c
-60.24 671.96 l
-60.24 674.1691 62.0309 675.96 64.24 675.96 c
-h
-f
-0.8 0.8 0.8 SCN
-0.75 w
-64.24 675.96 m
-531.04 675.96 l
-533.2491 675.96 535.04 674.1691 535.04 671.96 c
-535.04 599.0 l
-535.04 596.7909 533.2491 595.0 531.04 595.0 c
-64.24 595.0 l
-62.0309 595.0 60.24 596.7909 60.24 599.0 c
-60.24 671.96 l
-60.24 674.1691 62.0309 675.96 64.24 675.96 c
-h
-S
-Q
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 653.135 Td
-/F3.0 11 Tf
-<404265616e> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 638.395 Td
-/F3.0 11 Tf
-<7075626c6963205265737454656d706c617465207265737454656d706c617465285265737454656d706c6174654275696c646572206275696c64657229207b> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 623.655 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 608.915 Td
-/F3.0 11 Tf
-<7d> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-0.4842 Tw
-
-BT
-48.24 559.036 Td
-/F1.0 10.5 Tf
-[<59> 69.8242 <6f75206e65656420>] TJ
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-0.4842 Tw
-
-BT
-97.6362 559.036 Td
-/F3.0 10.5 Tf
-<5265737454656d706c6174654275696c646572> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-0.4842 Tw
-
-BT
-197.3862 559.036 Td
-/F1.0 10.5 Tf
-<206265636175736520746865206275696c64657220697320706173736564207468726f7567682063616c6c6261636b7320746f20696e697469616c697a652069742c20736f20746865> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-1.1426 Tw
-
-BT
-48.24 543.256 Td
-/F1.0 10.5 Tf
-<53534c2076616c69646174696f6e2063616e2062652073657420757020696e2074686520636c69656e74206174207468617420706f696e742e20546869732068617070656e73206175746f6d61746963616c6c7920696e20796f75722074657374206966> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-2.9376 Tw
-
-BT
-48.24 527.476 Td
-/F1.0 10.5 Tf
-<796f75207573652074686520> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-2.9376 Tw
-
-BT
-116.8292 527.476 Td
-/F3.0 10.5 Tf
-<404175746f436f6e666967757265576972654d6f636b> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-2.9376 Tw
-
-BT
-232.3292 527.476 Td
-/F1.0 10.5 Tf
-<20616e6e6f746174696f6e206f722074686520737475622072756e6e65722e20496620796f752075736520746865204a556e697420> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-2.9376 Tw
-
-BT
-520.79 527.476 Td
-/F3.0 10.5 Tf
-<4052756c65> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-2.9376 Tw
-
-BT
-547.04 527.476 Td
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-3.2609 Tw
-
-BT
-48.24 511.696 Td
-/F1.0 10.5 Tf
-<617070726f6163682c20796f75206e65656420746f206164642074686520> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-3.2609 Tw
-
-BT
-221.83 511.696 Td
-/F3.0 10.5 Tf
-<404175746f436f6e66696775726548747470436c69656e74> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-3.2609 Tw
-
-BT
-347.83 511.696 Td
-/F1.0 10.5 Tf
-<20616e6e6f746174696f6e2061732077656c6c2c2061732074686520666f6c6c6f77696e67> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-48.24 495.916 Td
-/F1.0 10.5 Tf
-<6578616d706c652073686f77733a> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-q
-1.0 1.0 1.0 scn
-52.24 480.1 m
-543.04 480.1 l
-545.2491 480.1 547.04 478.3091 547.04 476.1 c
-547.04 290.7 l
-547.04 288.4909 545.2491 286.7 543.04 286.7 c
-52.24 286.7 l
-50.0309 286.7 48.24 288.4909 48.24 290.7 c
-48.24 476.1 l
-48.24 478.3091 50.0309 480.1 52.24 480.1 c
-h
-f
-0.9333 0.9333 0.9333 SCN
-0.75 w
-52.24 480.1 m
-543.04 480.1 l
-545.2491 480.1 547.04 478.3091 547.04 476.1 c
-547.04 290.7 l
-547.04 288.4909 545.2491 286.7 543.04 286.7 c
-52.24 286.7 l
-50.0309 286.7 48.24 288.4909 48.24 290.7 c
-48.24 476.1 l
-48.24 478.3091 50.0309 480.1 52.24 480.1 c
-h
-S
-Q
-q
-0.9608 0.9608 0.9608 scn
-64.24 468.1 m
-531.04 468.1 l
-533.2491 468.1 535.04 466.3091 535.04 464.1 c
-535.04 302.7 l
-535.04 300.4909 533.2491 298.7 531.04 298.7 c
-64.24 298.7 l
-62.0309 298.7 60.24 300.4909 60.24 302.7 c
-60.24 464.1 l
-60.24 466.3091 62.0309 468.1 64.24 468.1 c
-h
-f
-0.8 0.8 0.8 SCN
-0.75 w
-64.24 468.1 m
-531.04 468.1 l
-533.2491 468.1 535.04 466.3091 535.04 464.1 c
-535.04 302.7 l
-535.04 300.4909 533.2491 298.7 531.04 298.7 c
-64.24 298.7 l
-62.0309 298.7 60.24 300.4909 60.24 302.7 c
-60.24 464.1 l
-60.24 466.3091 62.0309 468.1 64.24 468.1 c
-h
-S
-Q
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 445.275 Td
-/F3.0 11 Tf
-<4052756e5769746828537072696e6752756e6e65722e636c61737329> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 430.535 Td
-/F3.0 11 Tf
-<40537072696e67426f6f745465737428226170702e6261736555726c3d68747470733a2f2f6c6f63616c686f73743a363434332229> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 415.795 Td
-/F3.0 11 Tf
-<404175746f436f6e66696775726548747470436c69656e74> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 401.055 Td
-/F3.0 11 Tf
-<7075626c696320636c61737320576972656d6f636b48747470735365727665724170706c69636174696f6e5465737473207b> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 371.575 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 356.835 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 342.095 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 327.355 Td
-/F3.0 11 Tf
-<2e2e2e> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 312.615 Td
-/F3.0 11 Tf
-<7d> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-1.4964 Tw
-
-BT
-48.24 262.736 Td
-/F1.0 10.5 Tf
-<496620796f752075736520> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-1.4964 Tw
-
-BT
-104.2633 262.736 Td
-/F3.0 10.5 Tf
-<737072696e672d626f6f742d737461727465722d74657374> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-1.4964 Tw
-
-BT
-230.2633 262.736 Td
-/F1.0 10.5 Tf
-<2c20796f7520686176652074686520417061636865204854545020636c69656e74206f6e2074686520636c617373706174682c20616e64206974206973> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-2.1666 Tw
-
-BT
-48.24 246.956 Td
-/F1.0 10.5 Tf
-[<73656c65637465642062> 20.0195 <792074686520>] TJ
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-2.1666 Tw
-
-BT
-131.1586 246.956 Td
-/F3.0 10.5 Tf
-<5265737454656d706c6174654275696c646572> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-2.1666 Tw
-
-BT
-230.9086 246.956 Td
-/F1.0 10.5 Tf
-<20616e6420636f6e6669677572656420746f2069676e6f72652053534c206572726f72732e20496620796f7520757365207468652064656661756c74> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-0.2407 Tw
-
-BT
-48.24 231.176 Td
-/F3.0 10.5 Tf
-<6a6176612e6e6574> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-0.2407 Tw
-
-BT
-90.24 231.176 Td
-/F1.0 10.5 Tf
-<20636c69656e742c20796f7520646f206e6f74206e6565642074686520616e6e6f746174696f6e202862757420697420646f6573206e6f206861726d292e2054686572652069732063757272656e746c79206e6f20737570706f7274> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-48.24 215.396 Td
-/F1.0 10.5 Tf
-[<666f72206f7468657220636c69656e74732c20627574206974206d61> 20.0195 <7920626520616464656420696e206675747572652072656c65617365732e>] TJ
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-1.0576 Tw
-
-BT
-48.24 187.616 Td
-/F1.0 10.5 Tf
-[<54> 29.7852 <6f2064697361626c652074686520637573746f6d20>] TJ
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-1.0576 Tw
-
-BT
-163.4473 187.616 Td
-/F3.0 10.5 Tf
-<5265737454656d706c6174654275696c646572> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-1.0576 Tw
-
-BT
-263.1973 187.616 Td
-/F1.0 10.5 Tf
-<2c207365742074686520> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-1.0576 Tw
-
-BT
-307.1732 187.616 Td
-/F3.0 10.5 Tf
-<776972656d6f636b2e726573742d74656d706c6174652d73736c2d656e61626c6564> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-1.0576 Tw
-
-BT
-485.6732 187.616 Td
-/F1.0 10.5 Tf
-<2070726f706572747920746f> Tj
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-BT
-48.24 171.836 Td
-/F3.0 10.5 Tf
-<66616c7365> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-74.49 171.836 Td
-/F1.0 10.5 Tf
-<2e> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-48.24 137.336 Td
-/F2.0 13 Tf
-[<332e362e352e20576972654d6f636b20616e6420537072696e67204d56> 20.0195 <43204d6f636b73>] TJ
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-2.2438 Tw
-
-BT
-48.24 110.776 Td
-/F1.0 10.5 Tf
-[<537072696e6720436c6f756420436f6e7472> 20.0195 <6163742070726f7669646573206120636f6e76656e69656e636520636c61737320746861742063616e206c6f6164204a534f4e20576972654d6f636b20737475627320696e746f2061>] TJ
-ET
-
-
-0.0 Tw
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-48.24 94.996 Td
-/F1.0 10.5 Tf
-<537072696e6720> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.6941 0.1294 0.2745 scn
-0.6941 0.1294 0.2745 SCN
-
-BT
-83.814 94.996 Td
-/F3.0 10.5 Tf
-<4d6f636b5265737453657276696365536572766572> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-194.064 94.996 Td
-/F1.0 10.5 Tf
-<2e2054686520666f6c6c6f77696e6720636f64652073686f777320616e206578616d706c653a> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-Q
-
-endstream
-endobj
-873 0 obj
-<< /Type /Page
-/Parent 3 0 R
-/MediaBox [0 0 595.28 841.89]
-/CropBox [0 0 595.28 841.89]
-/BleedBox [0 0 595.28 841.89]
-/TrimBox [0 0 595.28 841.89]
-/ArtBox [0 0 595.28 841.89]
-/Contents 872 0 R
-/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/Font << /F1.0 8 0 R
-/F3.0 33 0 R
-/F2.0 22 0 R
->>
->>
->>
-endobj
-874 0 obj
-[873 0 R /XYZ 0 156.02 null]
-endobj
-875 0 obj
-<< /Limits [(features-wiremock-using-files) (flows-provider-nexus)]
-/Names [(features-wiremock-using-files) 867 0 R (flows-cdc-contracts-external) 211 0 R (flows-cdc-contracts-external-consumer) 220 0 R (flows-cdc-contracts-external-producer) 225 0 R (flows-cdc-contracts-producer) 209 0 R (flows-cdc-contracts-stubs-git) 234 0 R (flows-provider-git) 190 0 R (flows-provider-git-consumer) 202 0 R (flows-provider-git-flow) 198 0 R (flows-provider-git-producer) 203 0 R (flows-provider-nexus) 187 0 R]
->>
-endobj
-876 0 obj
-<< /Length 11369
+<< /Length 7965
>>
stream
q
@@ -153321,10 +151962,10 @@ q
52.24 805.89 m
543.04 805.89 l
545.2491 805.89 547.04 804.0991 547.04 801.89 c
-547.04 410.13 l
-547.04 407.9209 545.2491 406.13 543.04 406.13 c
-52.24 406.13 l
-50.0309 406.13 48.24 407.9209 48.24 410.13 c
+547.04 115.33 l
+547.04 113.1209 545.2491 111.33 543.04 111.33 c
+52.24 111.33 l
+50.0309 111.33 48.24 113.1209 48.24 115.33 c
48.24 801.89 l
48.24 804.0991 50.0309 805.89 52.24 805.89 c
h
@@ -153335,10 +151976,10 @@ f
52.24 805.89 m
543.04 805.89 l
545.2491 805.89 547.04 804.0991 547.04 801.89 c
-547.04 410.13 l
-547.04 407.9209 545.2491 406.13 543.04 406.13 c
-52.24 406.13 l
-50.0309 406.13 48.24 407.9209 48.24 410.13 c
+547.04 115.33 l
+547.04 113.1209 545.2491 111.33 543.04 111.33 c
+52.24 111.33 l
+50.0309 111.33 48.24 113.1209 48.24 115.33 c
48.24 801.89 l
48.24 804.0991 50.0309 805.89 52.24 805.89 c
h
@@ -153350,10 +151991,10 @@ q
64.24 793.89 m
531.04 793.89 l
533.2491 793.89 535.04 792.0991 535.04 789.89 c
-535.04 422.13 l
-535.04 419.9209 533.2491 418.13 531.04 418.13 c
-64.24 418.13 l
-62.0309 418.13 60.24 419.9209 60.24 422.13 c
+535.04 127.33 l
+535.04 125.1209 533.2491 123.33 531.04 123.33 c
+64.24 123.33 l
+62.0309 123.33 60.24 125.1209 60.24 127.33 c
60.24 789.89 l
60.24 792.0991 62.0309 793.89 64.24 793.89 c
h
@@ -153364,10 +152005,10 @@ f
64.24 793.89 m
531.04 793.89 l
533.2491 793.89 535.04 792.0991 535.04 789.89 c
-535.04 422.13 l
-535.04 419.9209 533.2491 418.13 531.04 418.13 c
-64.24 418.13 l
-62.0309 418.13 60.24 419.9209 60.24 422.13 c
+535.04 127.33 l
+535.04 125.1209 533.2491 123.33 531.04 123.33 c
+64.24 123.33 l
+62.0309 123.33 60.24 125.1209 60.24 127.33 c
60.24 789.89 l
60.24 792.0991 62.0309 793.89 64.24 793.89 c
h
@@ -153381,7 +152022,7 @@ Q
BT
71.24 771.065 Td
/F3.0 11 Tf
-<4052756e5769746828537072696e6752756e6e65722e636c61737329> Tj
+<40537072696e67426f6f745465737428776562456e7669726f6e6d656e74203d20576562456e7669726f6e6d656e742e52414e444f4d5f504f525429> Tj
ET
0.0 0.0 0.0 SCN
@@ -153392,7 +152033,7 @@ ET
BT
71.24 756.325 Td
/F3.0 11 Tf
-<40537072696e67426f6f745465737428776562456e7669726f6e6d656e74203d20576562456e7669726f6e6d656e742e4e4f4e4529> Tj
+<7075626c696320636c61737320576972656d6f636b466f72446f6373436c61737352756c655465737473207b> Tj
ET
0.0 0.0 0.0 SCN
@@ -153401,9 +152042,9 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 741.585 Td
+71.24 726.845 Td
/F3.0 11 Tf
-<7075626c696320636c61737320576972656d6f636b466f72446f63734d6f636b5365727665724170706c69636174696f6e5465737473207b> Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153414,7 +152055,7 @@ ET
BT
71.24 712.105 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153425,7 +152066,7 @@ ET
BT
71.24 697.365 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153434,9 +152075,9 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 667.885 Td
+71.24 682.625 Td
/F3.0 11 Tf
- Tj
+<576972654d6f636b53657276657228576972654d6f636b537072696e672e6f7074696f6e7328292e64796e616d6963506f72742829293b> Tj
ET
0.0 0.0 0.0 SCN
@@ -153447,7 +152088,18 @@ ET
BT
71.24 653.145 Td
/F3.0 11 Tf
- Tj
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 638.405 Td
+/F3.0 11 Tf
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153458,7 +152110,7 @@ ET
BT
71.24 623.665 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153469,18 +152121,7 @@ ET
BT
71.24 608.925 Td
/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 594.185 Td
-/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153491,7 +152132,7 @@ ET
BT
71.24 579.445 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153502,7 +152143,7 @@ ET
BT
71.24 564.705 Td
/F3.0 11 Tf
-<576972654d6f636b52657374536572766963655365727665722e7769746828746869732e7265737454656d706c61746529> Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153513,7 +152154,7 @@ ET
BT
71.24 549.965 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153524,18 +152165,7 @@ ET
BT
71.24 535.225 Td
/F3.0 11 Tf
-<2e6261736555726c282268747470733a2f2f6578616d706c652e6f726722292e73747562732822636c617373706174683a2f73747562732f7265736f757263652e6a736f6e2229> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-71.24 520.485 Td
-/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153546,7 +152176,7 @@ ET
BT
71.24 505.745 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153557,7 +152187,7 @@ ET
BT
71.24 491.005 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153568,7 +152198,7 @@ ET
BT
71.24 476.265 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -153590,6 +152220,1480 @@ ET
BT
71.24 432.045 Td
/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 417.305 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 402.565 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 373.085 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 358.345 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 343.605 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 328.865 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 299.385 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 284.645 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 269.905 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 255.165 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 240.425 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 225.685 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 210.945 Td
+/F3.0 11 Tf
+<576f726c6421222929293b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 196.205 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 181.465 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 166.725 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 137.245 Td
+/F3.0 11 Tf
+<7d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 87.366 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+69.66 87.366 Td
+/F3.0 10.5 Tf
+<40436c61737352756c65> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+122.16 87.366 Td
+/F1.0 10.5 Tf
+<206d65616e732074686174207468652073657276657220736875747320646f776e20616674657220616c6c20746865206d6574686f647320696e207468697320636c6173732068617665206265656e2072756e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+
+endstream
+endobj
+872 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 871 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 33 0 R
+/F1.0 8 0 R
+>>
+>>
+>>
+endobj
+873 0 obj
+<< /Length 13798
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 792.006 Td
+/F2.0 13 Tf
+[<332e362e342e2052656c617865642053534c2056> 60.0586 <616c69646174696f6e20666f7220526573742054> 29.7852 <656d706c617465>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.704 Tw
+
+BT
+48.24 765.446 Td
+/F1.0 10.5 Tf
+<576972654d6f636b206c65747320796f752073747562206120d2736563757265d320736572766572207769746820616e20> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.704 Tw
+
+BT
+304.056 765.446 Td
+/F3.0 10.5 Tf
+<6874747073> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.704 Tw
+
+BT
+330.306 765.446 Td
+/F1.0 10.5 Tf
+<2055524c2070726f746f636f6c2e20496620796f7572206170706c69636174696f6e2077616e747320746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4578 Tw
+
+BT
+48.24 749.666 Td
+/F1.0 10.5 Tf
+[<636f6e74616374207468617420737475622073657276657220696e20616e20696e74656772> 20.0195 <6174696f6e20746573742c2069742077696c6c2066696e642074686174207468652053534c2063657274696669636174657320617265206e6f742076616c69642028746865>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.8631 Tw
+
+BT
+48.24 733.886 Td
+/F1.0 10.5 Tf
+<757375616c2070726f626c656d20776974682073656c662d696e7374616c6c656420636572746966696361746573292e205468652062657374206f7074696f6e206973206f6674656e20746f2072652d636f6e6669677572652074686520636c69656e7420746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0278 Tw
+
+BT
+48.24 718.106 Td
+/F1.0 10.5 Tf
+<75736520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0278 Tw
+
+BT
+68.9973 718.106 Td
+/F3.0 10.5 Tf
+<68747470> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0278 Tw
+
+BT
+89.9973 718.106 Td
+/F1.0 10.5 Tf
+<2e2049662074686174206973206e6f7420616e206f7074696f6e2c20796f752063616e2061736b20537072696e6720746f20636f6e66696775726520616e204854545020636c69656e7420746861742069676e6f7265732053534c> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 702.326 Td
+/F1.0 10.5 Tf
+<76616c69646174696f6e206572726f72732028646f20736f206f6e6c7920666f722074657374732c206f6620636f75727365292e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0699 Tw
+
+BT
+48.24 674.546 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f206d616b> 20.0195 <65207468697320776f726b2077697468206d696e696d756d20667573732c20796f75206e65656420746f207573652074686520537072696e6720426f6f7420>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.0699 Tw
+
+BT
+408.0061 674.546 Td
+/F3.0 10.5 Tf
+<5265737454656d706c6174654275696c646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.0699 Tw
+
+BT
+507.7561 674.546 Td
+/F1.0 10.5 Tf
+<20696e20796f7572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 658.766 Td
+/F1.0 10.5 Tf
+<6170706c69636174696f6e2c2061732074686520666f6c6c6f77696e67206578616d706c652073686f77733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+1.0 1.0 1.0 scn
+52.24 642.95 m
+543.04 642.95 l
+545.2491 642.95 547.04 641.1591 547.04 638.95 c
+547.04 541.99 l
+547.04 539.7809 545.2491 537.99 543.04 537.99 c
+52.24 537.99 l
+50.0309 537.99 48.24 539.7809 48.24 541.99 c
+48.24 638.95 l
+48.24 641.1591 50.0309 642.95 52.24 642.95 c
+h
+f
+0.9333 0.9333 0.9333 SCN
+0.75 w
+52.24 642.95 m
+543.04 642.95 l
+545.2491 642.95 547.04 641.1591 547.04 638.95 c
+547.04 541.99 l
+547.04 539.7809 545.2491 537.99 543.04 537.99 c
+52.24 537.99 l
+50.0309 537.99 48.24 539.7809 48.24 541.99 c
+48.24 638.95 l
+48.24 641.1591 50.0309 642.95 52.24 642.95 c
+h
+S
+Q
+q
+0.9608 0.9608 0.9608 scn
+64.24 630.95 m
+531.04 630.95 l
+533.2491 630.95 535.04 629.1591 535.04 626.95 c
+535.04 553.99 l
+535.04 551.7809 533.2491 549.99 531.04 549.99 c
+64.24 549.99 l
+62.0309 549.99 60.24 551.7809 60.24 553.99 c
+60.24 626.95 l
+60.24 629.1591 62.0309 630.95 64.24 630.95 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+64.24 630.95 m
+531.04 630.95 l
+533.2491 630.95 535.04 629.1591 535.04 626.95 c
+535.04 553.99 l
+535.04 551.7809 533.2491 549.99 531.04 549.99 c
+64.24 549.99 l
+62.0309 549.99 60.24 551.7809 60.24 553.99 c
+60.24 626.95 l
+60.24 629.1591 62.0309 630.95 64.24 630.95 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 608.125 Td
+/F3.0 11 Tf
+<404265616e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 593.385 Td
+/F3.0 11 Tf
+<7075626c6963205265737454656d706c617465207265737454656d706c617465285265737454656d706c6174654275696c646572206275696c64657229207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 578.645 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 563.905 Td
+/F3.0 11 Tf
+<7d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4842 Tw
+
+BT
+48.24 514.026 Td
+/F1.0 10.5 Tf
+[<59> 69.8242 <6f75206e65656420>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.4842 Tw
+
+BT
+97.6362 514.026 Td
+/F3.0 10.5 Tf
+<5265737454656d706c6174654275696c646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.4842 Tw
+
+BT
+197.3862 514.026 Td
+/F1.0 10.5 Tf
+<206265636175736520746865206275696c64657220697320706173736564207468726f7567682063616c6c6261636b7320746f20696e697469616c697a652069742c20736f20746865> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.1426 Tw
+
+BT
+48.24 498.246 Td
+/F1.0 10.5 Tf
+<53534c2076616c69646174696f6e2063616e2062652073657420757020696e2074686520636c69656e74206174207468617420706f696e742e20546869732068617070656e73206175746f6d61746963616c6c7920696e20796f75722074657374206966> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9376 Tw
+
+BT
+48.24 482.466 Td
+/F1.0 10.5 Tf
+<796f75207573652074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.9376 Tw
+
+BT
+116.8292 482.466 Td
+/F3.0 10.5 Tf
+<404175746f436f6e666967757265576972654d6f636b> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9376 Tw
+
+BT
+232.3292 482.466 Td
+/F1.0 10.5 Tf
+<20616e6e6f746174696f6e206f722074686520737475622072756e6e65722e20496620796f752075736520746865204a556e697420> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.9376 Tw
+
+BT
+520.79 482.466 Td
+/F3.0 10.5 Tf
+<4052756c65> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.9376 Tw
+
+BT
+547.04 482.466 Td
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.2609 Tw
+
+BT
+48.24 466.686 Td
+/F1.0 10.5 Tf
+<617070726f6163682c20796f75206e65656420746f206164642074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+3.2609 Tw
+
+BT
+221.83 466.686 Td
+/F3.0 10.5 Tf
+<404175746f436f6e66696775726548747470436c69656e74> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+3.2609 Tw
+
+BT
+347.83 466.686 Td
+/F1.0 10.5 Tf
+<20616e6e6f746174696f6e2061732077656c6c2c2061732074686520666f6c6c6f77696e67> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 450.906 Td
+/F1.0 10.5 Tf
+<6578616d706c652073686f77733a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+1.0 1.0 1.0 scn
+52.24 435.09 m
+543.04 435.09 l
+545.2491 435.09 547.04 433.2991 547.04 431.09 c
+547.04 245.69 l
+547.04 243.4809 545.2491 241.69 543.04 241.69 c
+52.24 241.69 l
+50.0309 241.69 48.24 243.4809 48.24 245.69 c
+48.24 431.09 l
+48.24 433.2991 50.0309 435.09 52.24 435.09 c
+h
+f
+0.9333 0.9333 0.9333 SCN
+0.75 w
+52.24 435.09 m
+543.04 435.09 l
+545.2491 435.09 547.04 433.2991 547.04 431.09 c
+547.04 245.69 l
+547.04 243.4809 545.2491 241.69 543.04 241.69 c
+52.24 241.69 l
+50.0309 241.69 48.24 243.4809 48.24 245.69 c
+48.24 431.09 l
+48.24 433.2991 50.0309 435.09 52.24 435.09 c
+h
+S
+Q
+q
+0.9608 0.9608 0.9608 scn
+64.24 423.09 m
+531.04 423.09 l
+533.2491 423.09 535.04 421.2991 535.04 419.09 c
+535.04 257.69 l
+535.04 255.4809 533.2491 253.69 531.04 253.69 c
+64.24 253.69 l
+62.0309 253.69 60.24 255.4809 60.24 257.69 c
+60.24 419.09 l
+60.24 421.2991 62.0309 423.09 64.24 423.09 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+64.24 423.09 m
+531.04 423.09 l
+533.2491 423.09 535.04 421.2991 535.04 419.09 c
+535.04 257.69 l
+535.04 255.4809 533.2491 253.69 531.04 253.69 c
+64.24 253.69 l
+62.0309 253.69 60.24 255.4809 60.24 257.69 c
+60.24 419.09 l
+60.24 421.2991 62.0309 423.09 64.24 423.09 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 400.265 Td
+/F3.0 11 Tf
+<4052756e5769746828537072696e6752756e6e65722e636c61737329> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 385.525 Td
+/F3.0 11 Tf
+<40537072696e67426f6f745465737428226170702e6261736555726c3d68747470733a2f2f6c6f63616c686f73743a363434332229> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 370.785 Td
+/F3.0 11 Tf
+<404175746f436f6e66696775726548747470436c69656e74> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 356.045 Td
+/F3.0 11 Tf
+<7075626c696320636c61737320576972656d6f636b48747470735365727665724170706c69636174696f6e5465737473207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 326.565 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 311.825 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 297.085 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 282.345 Td
+/F3.0 11 Tf
+<2e2e2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 267.605 Td
+/F3.0 11 Tf
+<7d> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4964 Tw
+
+BT
+48.24 217.726 Td
+/F1.0 10.5 Tf
+<496620796f752075736520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.4964 Tw
+
+BT
+104.2633 217.726 Td
+/F3.0 10.5 Tf
+<737072696e672d626f6f742d737461727465722d74657374> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.4964 Tw
+
+BT
+230.2633 217.726 Td
+/F1.0 10.5 Tf
+<2c20796f7520686176652074686520417061636865204854545020636c69656e74206f6e2074686520636c617373706174682c20616e64206974206973> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1666 Tw
+
+BT
+48.24 201.946 Td
+/F1.0 10.5 Tf
+[<73656c65637465642062> 20.0195 <792074686520>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+2.1666 Tw
+
+BT
+131.1586 201.946 Td
+/F3.0 10.5 Tf
+<5265737454656d706c6174654275696c646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.1666 Tw
+
+BT
+230.9086 201.946 Td
+/F1.0 10.5 Tf
+<20616e6420636f6e6669677572656420746f2069676e6f72652053534c206572726f72732e20496620796f7520757365207468652064656661756c74> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+0.2407 Tw
+
+BT
+48.24 186.166 Td
+/F3.0 10.5 Tf
+<6a6176612e6e6574> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.2407 Tw
+
+BT
+90.24 186.166 Td
+/F1.0 10.5 Tf
+<20636c69656e742c20796f7520646f206e6f74206e6565642074686520616e6e6f746174696f6e202862757420697420646f6573206e6f206861726d292e2054686572652069732063757272656e746c79206e6f20737570706f7274> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 170.386 Td
+/F1.0 10.5 Tf
+[<666f72206f7468657220636c69656e74732c20627574206974206d61> 20.0195 <7920626520616464656420696e206675747572652072656c65617365732e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0576 Tw
+
+BT
+48.24 142.606 Td
+/F1.0 10.5 Tf
+[<54> 29.7852 <6f2064697361626c652074686520637573746f6d20>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0576 Tw
+
+BT
+163.4473 142.606 Td
+/F3.0 10.5 Tf
+<5265737454656d706c6174654275696c646572> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0576 Tw
+
+BT
+263.1973 142.606 Td
+/F1.0 10.5 Tf
+<2c207365742074686520> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+1.0576 Tw
+
+BT
+307.1732 142.606 Td
+/F3.0 10.5 Tf
+<776972656d6f636b2e726573742d74656d706c6174652d73736c2d656e61626c6564> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+1.0576 Tw
+
+BT
+485.6732 142.606 Td
+/F1.0 10.5 Tf
+<2070726f706572747920746f> Tj
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+48.24 126.826 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+74.49 126.826 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 92.326 Td
+/F2.0 13 Tf
+[<332e362e352e20576972654d6f636b20616e6420537072696e67204d56> 20.0195 <43204d6f636b73>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+2.2438 Tw
+
+BT
+48.24 65.766 Td
+/F1.0 10.5 Tf
+[<537072696e6720436c6f756420436f6e7472> 20.0195 <6163742070726f7669646573206120636f6e76656e69656e636520636c61737320746861742063616e206c6f6164204a534f4e20576972654d6f636b20737475627320696e746f2061>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+
+endstream
+endobj
+874 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 873 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 22 0 R
+/F1.0 8 0 R
+/F3.0 33 0 R
+>>
+>>
+>>
+endobj
+875 0 obj
+[874 0 R /XYZ 0 841.89 null]
+endobj
+876 0 obj
+[874 0 R /XYZ 0 111.01 null]
+endobj
+877 0 obj
+<< /Limits [(features-wiremock-using-files) (flows-provider-nexus)]
+/Names [(features-wiremock-using-files) 867 0 R (flows-cdc-contracts-external) 211 0 R (flows-cdc-contracts-external-consumer) 220 0 R (flows-cdc-contracts-external-producer) 225 0 R (flows-cdc-contracts-producer) 209 0 R (flows-cdc-contracts-stubs-git) 234 0 R (flows-provider-git) 190 0 R (flows-provider-git-consumer) 202 0 R (flows-provider-git-flow) 198 0 R (flows-provider-git-producer) 203 0 R (flows-provider-nexus) 187 0 R]
+>>
+endobj
+878 0 obj
+<< /Length 11348
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 794.676 Td
+/F1.0 10.5 Tf
+<537072696e6720> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.6941 0.1294 0.2745 scn
+0.6941 0.1294 0.2745 SCN
+
+BT
+83.814 794.676 Td
+/F3.0 10.5 Tf
+<4d6f636b5265737453657276696365536572766572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+194.064 794.676 Td
+/F1.0 10.5 Tf
+<2e2054686520666f6c6c6f77696e6720636f64652073686f777320616e206578616d706c653a> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+q
+1.0 1.0 1.0 scn
+52.24 778.86 m
+543.04 778.86 l
+545.2491 778.86 547.04 777.0691 547.04 774.86 c
+547.04 397.84 l
+547.04 395.6309 545.2491 393.84 543.04 393.84 c
+52.24 393.84 l
+50.0309 393.84 48.24 395.6309 48.24 397.84 c
+48.24 774.86 l
+48.24 777.0691 50.0309 778.86 52.24 778.86 c
+h
+f
+0.9333 0.9333 0.9333 SCN
+0.75 w
+52.24 778.86 m
+543.04 778.86 l
+545.2491 778.86 547.04 777.0691 547.04 774.86 c
+547.04 397.84 l
+547.04 395.6309 545.2491 393.84 543.04 393.84 c
+52.24 393.84 l
+50.0309 393.84 48.24 395.6309 48.24 397.84 c
+48.24 774.86 l
+48.24 777.0691 50.0309 778.86 52.24 778.86 c
+h
+S
+Q
+q
+0.9608 0.9608 0.9608 scn
+64.24 766.86 m
+531.04 766.86 l
+533.2491 766.86 535.04 765.0691 535.04 762.86 c
+535.04 409.84 l
+535.04 407.6309 533.2491 405.84 531.04 405.84 c
+64.24 405.84 l
+62.0309 405.84 60.24 407.6309 60.24 409.84 c
+60.24 762.86 l
+60.24 765.0691 62.0309 766.86 64.24 766.86 c
+h
+f
+0.8 0.8 0.8 SCN
+0.75 w
+64.24 766.86 m
+531.04 766.86 l
+533.2491 766.86 535.04 765.0691 535.04 762.86 c
+535.04 409.84 l
+535.04 407.6309 533.2491 405.84 531.04 405.84 c
+64.24 405.84 l
+62.0309 405.84 60.24 407.6309 60.24 409.84 c
+60.24 762.86 l
+60.24 765.0691 62.0309 766.86 64.24 766.86 c
+h
+S
+Q
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 744.035 Td
+/F3.0 11 Tf
+<40537072696e67426f6f745465737428776562456e7669726f6e6d656e74203d20576562456e7669726f6e6d656e742e4e4f4e4529> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 729.295 Td
+/F3.0 11 Tf
+<7075626c696320636c61737320576972656d6f636b466f72446f63734d6f636b5365727665724170706c69636174696f6e5465737473207b> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 699.815 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 685.075 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 655.595 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 640.855 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 611.375 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 596.635 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 581.895 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 567.155 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 552.415 Td
+/F3.0 11 Tf
+<576972654d6f636b52657374536572766963655365727665722e7769746828746869732e7265737454656d706c61746529> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 537.675 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 522.935 Td
+/F3.0 11 Tf
+<2e6261736555726c282268747470733a2f2f6578616d706c652e6f726722292e73747562732822636c617373706174683a2f73747562732f7265736f757263652e6a736f6e2229> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 508.195 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 493.455 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 478.715 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 463.975 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 449.235 Td
+/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 419.755 Td
+/F3.0 11 Tf
<7d> Tj
ET
@@ -153601,7 +153705,7 @@ ET
0.1703 Tw
BT
-48.24 382.166 Td
+48.24 369.876 Td
/F1.0 10.5 Tf
<54686520> Tj
ET
@@ -153616,7 +153720,7 @@ ET
0.1703 Tw
BT
-69.8303 382.166 Td
+69.8303 369.876 Td
/F3.0 10.5 Tf
<6261736555726c> Tj
ET
@@ -153631,7 +153735,7 @@ ET
0.1703 Tw
BT
-106.5803 382.166 Td
+106.5803 369.876 Td
/F1.0 10.5 Tf
<2076616c75652069732070726570656e64656420746f20616c6c206d6f636b2063616c6c732c20616e642074686520> Tj
ET
@@ -153646,7 +153750,7 @@ ET
0.1703 Tw
BT
-334.8422 382.166 Td
+334.8422 369.876 Td
/F3.0 10.5 Tf
<73747562732829> Tj
ET
@@ -153661,7 +153765,7 @@ ET
0.1703 Tw
BT
-371.5922 382.166 Td
+371.5922 369.876 Td
/F1.0 10.5 Tf
[<206d6574686f642074616b> 20.0195 <6573206120737475622070617468207265736f75726365>] TJ
ET
@@ -153676,7 +153780,7 @@ ET
2.3841 Tw
BT
-48.24 366.386 Td
+48.24 354.096 Td
/F1.0 10.5 Tf
<7061747465726e20617320616e20617267756d656e742e20496e2074686520707265636564696e67206578616d706c652c20746865207374756220646566696e656420617420> Tj
ET
@@ -153691,7 +153795,7 @@ ET
2.3841 Tw
BT
-428.8514 366.386 Td
+428.8514 354.096 Td
/F3.0 10.5 Tf
<2f73747562732f7265736f757263652e6a736f6e> Tj
ET
@@ -153706,7 +153810,7 @@ ET
2.3841 Tw
BT
-533.8514 366.386 Td
+533.8514 354.096 Td
/F1.0 10.5 Tf
<206973> Tj
ET
@@ -153721,7 +153825,7 @@ ET
0.7217 Tw
BT
-48.24 350.606 Td
+48.24 338.316 Td
/F1.0 10.5 Tf
<6c6f6164656420696e746f20746865206d6f636b207365727665722e2049662074686520> Tj
ET
@@ -153736,7 +153840,7 @@ ET
0.7217 Tw
BT
-227.4136 350.606 Td
+227.4136 338.316 Td
/F3.0 10.5 Tf
<5265737454656d706c617465> Tj
ET
@@ -153751,7 +153855,7 @@ ET
0.7217 Tw
BT
-290.4136 350.606 Td
+290.4136 338.316 Td
/F1.0 10.5 Tf
[<2069732061736b> 20.0195 <656420746f20766973697420>] TJ
ET
@@ -153766,7 +153870,7 @@ ET
0.7217 Tw
BT
-375.2816 350.606 Td
+375.2816 338.316 Td
/F3.0 10.5 Tf
<6578616d706c652e6f72672f> Tj
ET
@@ -153781,7 +153885,7 @@ ET
0.7217 Tw
BT
-438.2816 350.606 Td
+438.2816 338.316 Td
/F1.0 10.5 Tf
<2c20697420676574732074686520726573706f6e736573> Tj
ET
@@ -153796,7 +153900,7 @@ ET
0.6243 Tw
BT
-48.24 334.826 Td
+48.24 322.536 Td
/F1.0 10.5 Tf
<6173206265696e67206465636c6172656420617420746861742055524c2e204d6f7265207468616e206f6e652073747562207061747465726e2063616e206265207370656369666965642c20616e642065616368206f6e652063616e2062652061> Tj
ET
@@ -153811,7 +153915,7 @@ ET
0.1404 Tw
BT
-48.24 319.046 Td
+48.24 306.756 Td
/F1.0 10.5 Tf
<6469726563746f72792028666f72206120726563757273697665206c697374206f6620616c6c20> Tj
ET
@@ -153826,7 +153930,7 @@ ET
0.1404 Tw
BT
-223.3026 319.046 Td
+223.3026 306.756 Td
/F3.0 10.5 Tf
<2e6a736f6e> Tj
ET
@@ -153841,7 +153945,7 @@ ET
0.1404 Tw
BT
-249.5526 319.046 Td
+249.5526 306.756 Td
/F1.0 10.5 Tf
<292c20612066697865642066696c656e616d652028617320696e2074686520707265636564696e67206578616d706c65292c206f7220616e20416e742d> Tj
ET
@@ -153856,7 +153960,7 @@ ET
1.2172 Tw
BT
-48.24 303.266 Td
+48.24 290.976 Td
/F1.0 10.5 Tf
<7374796c65207061747465726e2e20546865204a534f4e20666f726d617420697320746865206e6f726d616c20576972654d6f636b20666f726d61742c20776869636820796f752063616e20726561642061626f757420617420746865> Tj
ET
@@ -153869,7 +153973,7 @@ ET
0.2588 0.5451 0.7922 SCN
BT
-48.24 287.486 Td
+48.24 275.196 Td
/F1.0 10.5 Tf
<576972654d6f636b2077656273697465> Tj
ET
@@ -153880,7 +153984,7 @@ ET
0.2 0.2 0.2 SCN
BT
-141.543 287.486 Td
+141.543 275.196 Td
/F1.0 10.5 Tf
<2e> Tj
ET
@@ -153893,7 +153997,7 @@ ET
0.9509 Tw
BT
-48.24 259.706 Td
+48.24 247.416 Td
/F1.0 10.5 Tf
[<43757272656e746c79> 89.8438 <2c2074686520537072696e6720436c6f756420436f6e7472> 20.0195 <6163742056> 60.0586 <6572696669657220737570706f7274732054> 29.7852 <6f6d6361742c204a65747479> 89.8438 <2c20616e6420556e646572746f7720617320537072696e6720426f6f74>] TJ
ET
@@ -153908,7 +154012,7 @@ ET
2.8857 Tw
BT
-48.24 243.926 Td
+48.24 231.636 Td
/F1.0 10.5 Tf
<656d62656464656420736572766572732c20616e6420576972656d6f636b20697473656c662068617320d26e6174697665d320737570706f727420666f72206120706172746963756c61722076657273696f6e206f66204a65747479> Tj
ET
@@ -153923,7 +154027,7 @@ ET
1.8007 Tw
BT
-48.24 228.146 Td
+48.24 215.856 Td
/F1.0 10.5 Tf
[<2863757272656e746c7920392e32292e2054> 29.7852 <6f2075736520746865206e6174697665204a65747479> 89.8438 <2c20796f75206e65656420746f2061646420746865206e617469766520576972656d6f636b20646570656e64656e6369657320616e64>] TJ
ET
@@ -153936,7 +154040,7 @@ ET
0.2 0.2 0.2 SCN
BT
-48.24 212.366 Td
+48.24 200.076 Td
/F1.0 10.5 Tf
<6578636c7564652074686520537072696e6720426f6f7420636f6e7461696e657220286966207468657265206973206f6e65292e> Tj
ET
@@ -153947,7 +154051,7 @@ ET
0.2 0.2 0.2 SCN
BT
-48.24 172.526 Td
+48.24 160.236 Td
/F2.0 18 Tf
[<332e372e204275696c642054> 29.7852 <6f6f6c7320496e74656772> 20.0195 <6174696f6e>] TJ
ET
@@ -153960,7 +154064,7 @@ ET
1.6154 Tw
BT
-48.24 144.506 Td
+48.24 132.216 Td
/F1.0 10.5 Tf
[<59> 69.8242 <6f752063616e2072756e20746573742067656e6572> 20.0195 <6174696f6e20616e64207374756220657865637574696f6e20696e20766172696f7573207761> 20.0195 <79732e20546865206d6f737420636f6d6d6f6e206f6e657320617265206173>] TJ
ET
@@ -153973,7 +154077,7 @@ ET
0.2 0.2 0.2 SCN
BT
-48.24 128.726 Td
+48.24 116.436 Td
/F1.0 10.5 Tf
<666f6c6c6f77733a> Tj
ET
@@ -153986,7 +154090,7 @@ ET
0.2 0.2 0.2 SCN
BT
-56.8805 100.946 Td
+56.8805 88.656 Td
/F1.0 10.5 Tf
Tj
ET
@@ -153999,7 +154103,7 @@ ET
0.2588 0.5451 0.7922 SCN
BT
-66.24 100.946 Td
+66.24 88.656 Td
/F1.0 10.5 Tf
<4d6176656e> Tj
ET
@@ -154012,7 +154116,7 @@ ET
0.2 0.2 0.2 SCN
BT
-56.8805 79.166 Td
+56.8805 66.876 Td
/F1.0 10.5 Tf
Tj
ET
@@ -154025,44 +154129,18 @@ ET
0.2588 0.5451 0.7922 SCN
BT
-66.24 79.166 Td
+66.24 66.876 Td
/F1.0 10.5 Tf
[<4772> 20.0195 <61646c65>] TJ
ET
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-
--0.5 Tc
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
-BT
-56.8805 57.386 Td
-/F1.0 10.5 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-
-0.0 Tc
-0.2588 0.5451 0.7922 scn
-0.2588 0.5451 0.7922 SCN
-
-BT
-66.24 57.386 Td
-/F1.0 10.5 Tf
-[<446f636b> 20.0195 <6572>] TJ
-ET
-
0.0 0.0 0.0 SCN
0.0 0.0 0.0 scn
Q
endstream
endobj
-877 0 obj
+879 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -154070,86 +154148,101 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 876 0 R
+/Contents 878 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/Font << /F3.0 33 0 R
-/F1.0 8 0 R
+/Font << /F1.0 8 0 R
+/F3.0 33 0 R
/F2.0 22 0 R
>>
>>
-/Annots [878 0 R 879 0 R 881 0 R 882 0 R 883 0 R]
+/Annots [880 0 R 881 0 R 883 0 R 884 0 R]
>>
endobj
-878 0 obj
+880 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
/URI (https://example.org/)
>>
/Subtype /Link
-/Rect [375.2816 349.136 438.2816 359.636]
+/Rect [375.2816 336.846 438.2816 347.346]
/Type /Annot
>>
endobj
-879 0 obj
+881 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
/URI (https://wiremock.org/docs/stubbing/)
>>
/Subtype /Link
-/Rect [48.24 284.42 141.543 298.7]
+/Rect [48.24 272.13 141.543 286.41]
/Type /Annot
>>
endobj
-880 0 obj
-[877 0 R /XYZ 0 196.55 null]
+882 0 obj
+[879 0 R /XYZ 0 184.26 null]
endobj
-881 0 obj
+883 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
/URI (maven-project.html)
>>
/Subtype /Link
-/Rect [66.24 97.88 100.449 112.16]
+/Rect [66.24 85.59 100.449 99.87]
/Type /Annot
>>
endobj
-882 0 obj
+884 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
/URI (gradle-project.html)
>>
/Subtype /Link
-/Rect [66.24 76.1 99.6718 90.38]
+/Rect [66.24 63.81 99.6718 78.09]
/Type /Annot
>>
endobj
-883 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (docker-project.html)
->>
-/Subtype /Link
-/Rect [66.24 54.32 101.5828 68.6]
-/Type /Annot
->>
-endobj
-884 0 obj
-<< /Length 1940
+885 0 obj
+<< /Length 2222
>>
stream
q
+
+-0.5 Tc
/DeviceRGB cs
0.2 0.2 0.2 scn
/DeviceRGB CS
0.2 0.2 0.2 SCN
BT
-48.24 786.666 Td
+56.8805 793.926 Td
+/F1.0 10.5 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+
+0.0 Tc
+0.2588 0.5451 0.7922 scn
+0.2588 0.5451 0.7922 SCN
+
+BT
+66.24 793.926 Td
+/F1.0 10.5 Tf
+[<446f636b> 20.0195 <6572>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 754.086 Td
/F2.0 18 Tf
<332e382e205768617420746f2052656164204e657874> Tj
ET
@@ -154162,7 +154255,7 @@ ET
1.3544 Tw
BT
-48.24 758.646 Td
+48.24 726.066 Td
/F1.0 10.5 Tf
[<496620796f752077616e7420746f206c6561726e206d6f72652061626f757420616e> 20.0195 <79206f662074686520636c61737365732064697363757373656420696e20746869732073656374696f6e2c20796f752063616e2062726f77736520746865>] TJ
ET
@@ -154175,7 +154268,7 @@ ET
0.2588 0.5451 0.7922 SCN
BT
-48.24 742.866 Td
+48.24 710.286 Td
/F1.0 10.5 Tf
<736f7572636520636f6465206469726563746c79> Tj
ET
@@ -154186,7 +154279,7 @@ ET
0.2 0.2 0.2 SCN
BT
-148.5255 742.866 Td
+148.5255 710.286 Td
/F1.0 10.5 Tf
<2e20496620796f752068617665207370656369666963207175657374696f6e732c207365652074686520> Tj
ET
@@ -154197,7 +154290,7 @@ ET
0.2588 0.5451 0.7922 SCN
BT
-343.8465 742.866 Td
+343.8465 710.286 Td
/F1.0 10.5 Tf
<686f772d746f> Tj
ET
@@ -154208,7 +154301,7 @@ ET
0.2 0.2 0.2 SCN
BT
-378.612 742.866 Td
+378.612 710.286 Td
/F1.0 10.5 Tf
<2073656374696f6e2e> Tj
ET
@@ -154221,7 +154314,7 @@ ET
1.2752 Tw
BT
-48.24 715.086 Td
+48.24 682.506 Td
/F1.0 10.5 Tf
[<496620796f752061726520636f6d666f727461626c65207769746820537072696e6720436c6f756420436f6e7472> 20.0195 <616374d57320636f72652066656174757265732c20796f752063616e20636f6e74696e7565206f6e20616e642072656164>] TJ
ET
@@ -154234,7 +154327,7 @@ ET
0.2 0.2 0.2 SCN
BT
-48.24 699.306 Td
+48.24 666.726 Td
/F1.0 10.5 Tf
<61626f757420> Tj
ET
@@ -154245,7 +154338,7 @@ ET
0.2588 0.5451 0.7922 SCN
BT
-79.7085 699.306 Td
+79.7085 666.726 Td
/F1.0 10.5 Tf
[<537072696e6720436c6f756420436f6e7472> 20.0195 <616374d57320616476616e636564206665617475726573>] TJ
ET
@@ -154256,7 +154349,7 @@ ET
0.2 0.2 0.2 SCN
BT
-291.4618 699.306 Td
+291.4618 666.726 Td
/F1.0 10.5 Tf
<2e> Tj
ET
@@ -154267,7 +154360,7 @@ Q
endstream
endobj
-885 0 obj
+886 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -154275,46 +154368,57 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 884 0 R
+/Contents 885 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/Font << /F2.0 22 0 R
-/F1.0 8 0 R
+/Font << /F1.0 8 0 R
+/F2.0 22 0 R
>>
>>
-/Annots [887 0 R 888 0 R 889 0 R]
+/Annots [887 0 R 889 0 R 890 0 R 891 0 R]
>>
endobj
-886 0 obj
-[885 0 R /XYZ 0 841.89 null]
-endobj
887 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
+/URI (docker-project.html)
+>>
+/Subtype /Link
+/Rect [66.24 790.86 101.5828 805.14]
+/Type /Annot
+>>
+endobj
+888 0 obj
+[886 0 R /XYZ 0 778.11 null]
+endobj
+889 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
/URI (https://github.com/spring-cloud/spring-cloud-contract/tree/master)
>>
/Subtype /Link
-/Rect [48.24 739.8 148.5255 754.08]
-/Type /Annot
->>
-endobj
-888 0 obj
-<< /Border [0 0 0]
-/Dest (howto)
-/Subtype /Link
-/Rect [343.8465 739.8 378.612 754.08]
-/Type /Annot
->>
-endobj
-889 0 obj
-<< /Border [0 0 0]
-/Dest (advanced.adoc)
-/Subtype /Link
-/Rect [79.7085 696.24 291.4618 710.52]
+/Rect [48.24 707.22 148.5255 721.5]
/Type /Annot
>>
endobj
890 0 obj
+<< /Border [0 0 0]
+/Dest (howto)
+/Subtype /Link
+/Rect [343.8465 707.22 378.612 721.5]
+/Type /Annot
+>>
+endobj
+891 0 obj
+<< /Border [0 0 0]
+/Dest (advanced.adoc)
+/Subtype /Link
+/Rect [79.7085 663.66 291.4618 677.94]
+/Type /Annot
+>>
+endobj
+892 0 obj
<< /Length 8935
>>
stream
@@ -154937,7 +155041,7 @@ Q
endstream
endobj
-891 0 obj
+893 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -154945,20 +155049,20 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 890 0 R
+/Contents 892 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
/F3.0 33 0 R
>>
>>
-/Annots [893 0 R 894 0 R 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R]
+/Annots [895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R 906 0 R 907 0 R]
>>
endobj
-892 0 obj
-[891 0 R /XYZ 0 841.89 null]
+894 0 obj
+[893 0 R /XYZ 0 841.89 null]
endobj
-893 0 obj
+895 0 obj
<< /Border [0 0 0]
/Dest (maven-add-plugin)
/Subtype /Link
@@ -154966,7 +155070,7 @@ endobj
/Type /Annot
>>
endobj
-894 0 obj
+896 0 obj
<< /Border [0 0 0]
/Dest (maven-rest-assured)
/Subtype /Link
@@ -154974,7 +155078,7 @@ endobj
/Type /Annot
>>
endobj
-895 0 obj
+897 0 obj
<< /Border [0 0 0]
/Dest (maven-snapshot-versions)
/Subtype /Link
@@ -154982,7 +155086,7 @@ endobj
/Type /Annot
>>
endobj
-896 0 obj
+898 0 obj
<< /Border [0 0 0]
/Dest (maven-add-stubs)
/Subtype /Link
@@ -154990,7 +155094,7 @@ endobj
/Type /Annot
>>
endobj
-897 0 obj
+899 0 obj
<< /Border [0 0 0]
/Dest (maven-run-plugin)
/Subtype /Link
@@ -154998,7 +155102,7 @@ endobj
/Type /Annot
>>
endobj
-898 0 obj
+900 0 obj
<< /Border [0 0 0]
/Dest (maven-configure-plugin)
/Subtype /Link
@@ -155006,7 +155110,7 @@ endobj
/Type /Annot
>>
endobj
-899 0 obj
+901 0 obj
<< /Border [0 0 0]
/Dest (maven-configuration-options)
/Subtype /Link
@@ -155014,7 +155118,7 @@ endobj
/Type /Annot
>>
endobj
-900 0 obj
+902 0 obj
<< /Border [0 0 0]
/Dest (maven-single-base)
/Subtype /Link
@@ -155022,7 +155126,7 @@ endobj
/Type /Annot
>>
endobj
-901 0 obj
+903 0 obj
<< /Border [0 0 0]
/Dest (maven-different-base)
/Subtype /Link
@@ -155030,7 +155134,7 @@ endobj
/Type /Annot
>>
endobj
-902 0 obj
+904 0 obj
<< /Border [0 0 0]
/Dest (maven-invoking-generated-tests)
/Subtype /Link
@@ -155038,7 +155142,7 @@ endobj
/Type /Annot
>>
endobj
-903 0 obj
+905 0 obj
<< /Border [0 0 0]
/Dest (maven-pushing-stubs-to-scm)
/Subtype /Link
@@ -155046,7 +155150,7 @@ endobj
/Type /Annot
>>
endobj
-904 0 obj
+906 0 obj
<< /Border [0 0 0]
/Dest (maven-sts)
/Subtype /Link
@@ -155054,7 +155158,7 @@ endobj
/Type /Annot
>>
endobj
-905 0 obj
+907 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -155065,10 +155169,10 @@ endobj
/Type /Annot
>>
endobj
-906 0 obj
-[891 0 R /XYZ 0 426.47 null]
+908 0 obj
+[893 0 R /XYZ 0 426.47 null]
endobj
-907 0 obj
+909 0 obj
<< /Length 6846
>>
stream
@@ -155454,7 +155558,7 @@ Q
endstream
endobj
-908 0 obj
+910 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -155462,7 +155566,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 907 0 R
+/Contents 909 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -155470,7 +155574,7 @@ endobj
>>
>>
endobj
-909 0 obj
+911 0 obj
<< /Length 5513
>>
stream
@@ -155785,7 +155889,7 @@ Q
endstream
endobj
-910 0 obj
+912 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -155793,7 +155897,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 909 0 R
+/Contents 911 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
@@ -155802,10 +155906,10 @@ endobj
>>
>>
endobj
-911 0 obj
-[910 0 R /XYZ 0 467.83 null]
+913 0 obj
+[912 0 R /XYZ 0 467.83 null]
endobj
-912 0 obj
+914 0 obj
<< /Length 9499
>>
stream
@@ -156384,7 +156488,7 @@ Q
endstream
endobj
-913 0 obj
+915 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -156392,7 +156496,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 912 0 R
+/Contents 914 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -156400,7 +156504,7 @@ endobj
>>
>>
endobj
-914 0 obj
+916 0 obj
<< /Length 9407
>>
stream
@@ -157012,7 +157116,7 @@ Q
endstream
endobj
-915 0 obj
+917 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -157020,7 +157124,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 914 0 R
+/Contents 916 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -157029,15 +157133,15 @@ endobj
>>
>>
endobj
-916 0 obj
-[915 0 R /XYZ 0 841.89 null]
+918 0 obj
+[917 0 R /XYZ 0 841.89 null]
endobj
-917 0 obj
+919 0 obj
<< /Limits [(gradle-add-gradle-plugin) (gradle-single-base-class)]
-/Names [(gradle-add-gradle-plugin) 979 0 R (gradle-add-stubs) 992 0 R (gradle-and-rest-assured) 986 0 R (gradle-configuration-options) 1000 0 R (gradle-configure-plugin) 999 0 R (gradle-consumer) 1018 0 R (gradle-default-setup) 996 0 R (gradle-different-base-classes) 1009 0 R (gradle-invoking-generated-tests) 1015 0 R (gradle-prerequisites) 977 0 R (gradle-project) 963 0 R (gradle-pushing-stubs-to-scm) 1016 0 R (gradle-run-plugin) 995 0 R (gradle-single-base-class) 1005 0 R]
+/Names [(gradle-add-gradle-plugin) 981 0 R (gradle-add-stubs) 994 0 R (gradle-and-rest-assured) 988 0 R (gradle-configuration-options) 1002 0 R (gradle-configure-plugin) 1001 0 R (gradle-consumer) 1020 0 R (gradle-default-setup) 998 0 R (gradle-different-base-classes) 1011 0 R (gradle-invoking-generated-tests) 1017 0 R (gradle-prerequisites) 979 0 R (gradle-project) 965 0 R (gradle-pushing-stubs-to-scm) 1018 0 R (gradle-run-plugin) 997 0 R (gradle-single-base-class) 1007 0 R]
>>
endobj
-918 0 obj
+920 0 obj
<< /Length 11953
>>
stream
@@ -157781,7 +157885,7 @@ Q
endstream
endobj
-919 0 obj
+921 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -157789,7 +157893,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 918 0 R
+/Contents 920 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
@@ -157798,16 +157902,16 @@ endobj
>>
>>
endobj
-920 0 obj
-[919 0 R /XYZ 0 670.075 null]
-endobj
-921 0 obj
-[919 0 R /XYZ 0 366.055 null]
-endobj
922 0 obj
-[919 0 R /XYZ 0 155.515 null]
+[921 0 R /XYZ 0 670.075 null]
endobj
923 0 obj
+[921 0 R /XYZ 0 366.055 null]
+endobj
+924 0 obj
+[921 0 R /XYZ 0 155.515 null]
+endobj
+925 0 obj
<< /Length 15452
>>
stream
@@ -158916,7 +159020,7 @@ Q
endstream
endobj
-924 0 obj
+926 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -158924,7 +159028,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 923 0 R
+/Contents 925 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
@@ -158933,10 +159037,10 @@ endobj
>>
>>
endobj
-925 0 obj
-[924 0 R /XYZ 0 438.35 null]
+927 0 obj
+[926 0 R /XYZ 0 438.35 null]
endobj
-926 0 obj
+928 0 obj
<< /Length 20428
>>
stream
@@ -160425,7 +160529,7 @@ Q
endstream
endobj
-927 0 obj
+929 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -160433,27 +160537,27 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 926 0 R
+/Contents 928 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
-/F7.1 928 0 R
+/F7.1 930 0 R
>>
>>
>>
endobj
-928 0 obj
+930 0 obj
<< /Type /Font
/BaseFont /3a44ca+mplus-1p-regular
/Subtype /TrueType
-/FontDescriptor 1611 0 R
+/FontDescriptor 1613 0 R
/FirstChar 32
/LastChar 255
-/Widths 1613 0 R
-/ToUnicode 1612 0 R
+/Widths 1615 0 R
+/ToUnicode 1614 0 R
>>
endobj
-929 0 obj
+931 0 obj
<< /Length 5943
>>
stream
@@ -160803,7 +160907,7 @@ Q
endstream
endobj
-930 0 obj
+932 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -160811,7 +160915,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 929 0 R
+/Contents 931 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -160820,10 +160924,10 @@ endobj
>>
>>
endobj
-931 0 obj
-[930 0 R /XYZ 0 725.52 null]
+933 0 obj
+[932 0 R /XYZ 0 725.52 null]
endobj
-932 0 obj
+934 0 obj
<< /Length 5458
>>
stream
@@ -161146,7 +161250,7 @@ Q
endstream
endobj
-933 0 obj
+935 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -161154,7 +161258,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 932 0 R
+/Contents 934 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -161162,7 +161266,7 @@ endobj
>>
>>
endobj
-934 0 obj
+936 0 obj
<< /Length 11557
>>
stream
@@ -161917,7 +162021,7 @@ Q
endstream
endobj
-935 0 obj
+937 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -161925,7 +162029,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 934 0 R
+/Contents 936 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -161934,13 +162038,13 @@ endobj
>>
>>
endobj
-936 0 obj
-[935 0 R /XYZ 0 380.05 null]
-endobj
-937 0 obj
-[935 0 R /XYZ 0 246.85 null]
-endobj
938 0 obj
+[937 0 R /XYZ 0 380.05 null]
+endobj
+939 0 obj
+[937 0 R /XYZ 0 246.85 null]
+endobj
+940 0 obj
<< /Length 13095
>>
stream
@@ -162790,7 +162894,7 @@ Q
endstream
endobj
-939 0 obj
+941 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -162798,7 +162902,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 938 0 R
+/Contents 940 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
@@ -162807,13 +162911,13 @@ endobj
>>
>>
endobj
-940 0 obj
-[939 0 R /XYZ 0 644.71 null]
-endobj
-941 0 obj
-[939 0 R /XYZ 0 172.441 null]
-endobj
942 0 obj
+[941 0 R /XYZ 0 644.71 null]
+endobj
+943 0 obj
+[941 0 R /XYZ 0 172.441 null]
+endobj
+944 0 obj
<< /Length 8030
>>
stream
@@ -163316,7 +163420,7 @@ Q
endstream
endobj
-943 0 obj
+945 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -163324,7 +163428,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 942 0 R
+/Contents 944 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -163333,10 +163437,10 @@ endobj
>>
>>
endobj
-944 0 obj
-[943 0 R /XYZ 0 276.87 null]
+946 0 obj
+[945 0 R /XYZ 0 276.87 null]
endobj
-945 0 obj
+947 0 obj
<< /Length 9597
>>
stream
@@ -163902,7 +164006,7 @@ Q
endstream
endobj
-946 0 obj
+948 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -163910,7 +164014,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 945 0 R
+/Contents 947 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -163918,10 +164022,10 @@ endobj
/F5.0 50 0 R
>>
>>
-/Annots [947 0 R]
+/Annots [949 0 R]
>>
endobj
-947 0 obj
+949 0 obj
<< /Border [0 0 0]
/Dest (scm-stub-downloader)
/Subtype /Link
@@ -163929,10 +164033,10 @@ endobj
/Type /Annot
>>
endobj
-948 0 obj
-[946 0 R /XYZ 0 172.65 null]
+950 0 obj
+[948 0 R /XYZ 0 172.65 null]
endobj
-949 0 obj
+951 0 obj
<< /Length 5515
>>
stream
@@ -164217,7 +164321,7 @@ Q
endstream
endobj
-950 0 obj
+952 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -164225,7 +164329,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 949 0 R
+/Contents 951 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F1.0 8 0 R
@@ -164234,7 +164338,7 @@ endobj
>>
>>
endobj
-951 0 obj
+953 0 obj
<< /Length 10685
>>
stream
@@ -164849,7 +164953,7 @@ Q
endstream
endobj
-952 0 obj
+954 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -164857,25 +164961,25 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 951 0 R
+/Contents 953 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
/F1.0 8 0 R
>>
>>
-/Annots [955 0 R 956 0 R]
->>
-endobj
-953 0 obj
-[952 0 R /XYZ 0 261.47 null]
-endobj
-954 0 obj
-<< /Limits [(maven-rest-assured) (yaml)]
-/Names [(maven-rest-assured) 911 0 R (maven-run-plugin) 921 0 R (maven-single-base) 931 0 R (maven-snapshot-versions) 916 0 R (maven-sts) 948 0 R (pact-stub-downloader) 1249 0 R (prerequisites) 191 0 R (prerequisites-2) 213 0 R (scm-stub-downloader) 1131 0 R (spring-cloud-contract-reference-documentation) 18 0 R (using) 185 0 R (using-whats-next) 275 0 R (why-spring-cloud-contract) 1140 0 R (yaml) 470 0 R]
+/Annots [957 0 R 958 0 R]
>>
endobj
955 0 obj
+[954 0 R /XYZ 0 261.47 null]
+endobj
+956 0 obj
+<< /Limits [(maven-rest-assured) (yaml)]
+/Names [(maven-rest-assured) 913 0 R (maven-run-plugin) 923 0 R (maven-single-base) 933 0 R (maven-snapshot-versions) 918 0 R (maven-sts) 950 0 R (pact-stub-downloader) 1251 0 R (prerequisites) 191 0 R (prerequisites-2) 213 0 R (scm-stub-downloader) 1133 0 R (spring-cloud-contract-reference-documentation) 18 0 R (using) 185 0 R (using-whats-next) 275 0 R (why-spring-cloud-contract) 1142 0 R (yaml) 470 0 R]
+>>
+endobj
+957 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -164886,7 +164990,7 @@ endobj
/Type /Annot
>>
endobj
-956 0 obj
+958 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -164897,7 +165001,7 @@ endobj
/Type /Annot
>>
endobj
-957 0 obj
+959 0 obj
<< /Length 9022
>>
stream
@@ -165473,7 +165577,7 @@ Q
endstream
endobj
-958 0 obj
+960 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -165481,7 +165585,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 957 0 R
+/Contents 959 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -165489,7 +165593,7 @@ endobj
>>
>>
endobj
-959 0 obj
+961 0 obj
<< /Length 3079
>>
stream
@@ -165679,7 +165783,7 @@ Q
endstream
endobj
-960 0 obj
+962 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -165687,14 +165791,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 959 0 R
+/Contents 961 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-961 0 obj
+963 0 obj
<< /Length 8003
>>
stream
@@ -166271,7 +166375,7 @@ Q
endstream
endobj
-962 0 obj
+964 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -166279,7 +166383,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 961 0 R
+/Contents 963 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -166287,13 +166391,13 @@ endobj
/F3.0 33 0 R
>>
>>
-/Annots [964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 975 0 R 976 0 R 978 0 R]
+/Annots [966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 975 0 R 976 0 R 977 0 R 978 0 R 980 0 R]
>>
endobj
-963 0 obj
-[962 0 R /XYZ 0 841.89 null]
+965 0 obj
+[964 0 R /XYZ 0 841.89 null]
endobj
-964 0 obj
+966 0 obj
<< /Border [0 0 0]
/Dest (gradle-prerequisites)
/Subtype /Link
@@ -166301,7 +166405,7 @@ endobj
/Type /Annot
>>
endobj
-965 0 obj
+967 0 obj
<< /Border [0 0 0]
/Dest (gradle-add-gradle-plugin)
/Subtype /Link
@@ -166309,7 +166413,7 @@ endobj
/Type /Annot
>>
endobj
-966 0 obj
+968 0 obj
<< /Border [0 0 0]
/Dest (gradle-and-rest-assured)
/Subtype /Link
@@ -166317,7 +166421,7 @@ endobj
/Type /Annot
>>
endobj
-967 0 obj
+969 0 obj
<< /Border [0 0 0]
/Dest (gradle-snapshot-versions)
/Subtype /Link
@@ -166325,7 +166429,7 @@ endobj
/Type /Annot
>>
endobj
-968 0 obj
+970 0 obj
<< /Border [0 0 0]
/Dest (gradle-add-stubs)
/Subtype /Link
@@ -166333,7 +166437,7 @@ endobj
/Type /Annot
>>
endobj
-969 0 obj
+971 0 obj
<< /Border [0 0 0]
/Dest (gradle-default-setup)
/Subtype /Link
@@ -166341,7 +166445,7 @@ endobj
/Type /Annot
>>
endobj
-970 0 obj
+972 0 obj
<< /Border [0 0 0]
/Dest (gradle-configure-plugin)
/Subtype /Link
@@ -166349,7 +166453,7 @@ endobj
/Type /Annot
>>
endobj
-971 0 obj
+973 0 obj
<< /Border [0 0 0]
/Dest (gradle-configuration-options)
/Subtype /Link
@@ -166357,7 +166461,7 @@ endobj
/Type /Annot
>>
endobj
-972 0 obj
+974 0 obj
<< /Border [0 0 0]
/Dest (gradle-single-base-class)
/Subtype /Link
@@ -166365,7 +166469,7 @@ endobj
/Type /Annot
>>
endobj
-973 0 obj
+975 0 obj
<< /Border [0 0 0]
/Dest (gradle-different-base-classes)
/Subtype /Link
@@ -166373,7 +166477,7 @@ endobj
/Type /Annot
>>
endobj
-974 0 obj
+976 0 obj
<< /Border [0 0 0]
/Dest (gradle-invoking-generated-tests)
/Subtype /Link
@@ -166381,7 +166485,7 @@ endobj
/Type /Annot
>>
endobj
-975 0 obj
+977 0 obj
<< /Border [0 0 0]
/Dest (gradle-pushing-stubs-to-scm)
/Subtype /Link
@@ -166389,7 +166493,7 @@ endobj
/Type /Annot
>>
endobj
-976 0 obj
+978 0 obj
<< /Border [0 0 0]
/Dest (gradle-consumer)
/Subtype /Link
@@ -166397,10 +166501,10 @@ endobj
/Type /Annot
>>
endobj
-977 0 obj
-[962 0 R /XYZ 0 432.47 null]
+979 0 obj
+[964 0 R /XYZ 0 432.47 null]
endobj
-978 0 obj
+980 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -166411,10 +166515,10 @@ endobj
/Type /Annot
>>
endobj
-979 0 obj
-[962 0 R /XYZ 0 297.27 null]
+981 0 obj
+[964 0 R /XYZ 0 297.27 null]
endobj
-980 0 obj
+982 0 obj
<< /Length 4152
>>
stream
@@ -166672,7 +166776,7 @@ Q
endstream
endobj
-981 0 obj
+983 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -166680,7 +166784,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 980 0 R
+/Contents 982 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -166688,7 +166792,7 @@ endobj
>>
>>
endobj
-982 0 obj
+984 0 obj
<< /Length 6411
>>
stream
@@ -167111,7 +167215,7 @@ Q
endstream
endobj
-983 0 obj
+985 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -167119,7 +167223,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 982 0 R
+/Contents 984 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -167127,7 +167231,7 @@ endobj
>>
>>
endobj
-984 0 obj
+986 0 obj
<< /Length 6926
>>
stream
@@ -167554,7 +167658,7 @@ Q
endstream
endobj
-985 0 obj
+987 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -167562,7 +167666,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 984 0 R
+/Contents 986 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -167572,10 +167676,10 @@ endobj
>>
>>
endobj
-986 0 obj
-[985 0 R /XYZ 0 239.739 null]
+988 0 obj
+[987 0 R /XYZ 0 239.739 null]
endobj
-987 0 obj
+989 0 obj
<< /Length 6183
>>
stream
@@ -167946,7 +168050,7 @@ Q
endstream
endobj
-988 0 obj
+990 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -167954,7 +168058,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 987 0 R
+/Contents 989 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -167963,10 +168067,10 @@ endobj
>>
>>
endobj
-989 0 obj
-[988 0 R /XYZ 0 409.53 null]
+991 0 obj
+[990 0 R /XYZ 0 409.53 null]
endobj
-990 0 obj
+992 0 obj
<< /Length 9724
>>
stream
@@ -168540,7 +168644,7 @@ Q
endstream
endobj
-991 0 obj
+993 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -168548,7 +168652,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 990 0 R
+/Contents 992 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
@@ -168557,10 +168661,10 @@ endobj
>>
>>
endobj
-992 0 obj
-[991 0 R /XYZ 0 290.95 null]
+994 0 obj
+[993 0 R /XYZ 0 290.95 null]
endobj
-993 0 obj
+995 0 obj
<< /Length 9410
>>
stream
@@ -169156,7 +169260,7 @@ Q
endstream
endobj
-994 0 obj
+996 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -169164,7 +169268,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 993 0 R
+/Contents 995 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -169173,13 +169277,13 @@ endobj
>>
>>
endobj
-995 0 obj
-[994 0 R /XYZ 0 720.33 null]
-endobj
-996 0 obj
-[994 0 R /XYZ 0 620.91 null]
-endobj
997 0 obj
+[996 0 R /XYZ 0 720.33 null]
+endobj
+998 0 obj
+[996 0 R /XYZ 0 620.91 null]
+endobj
+999 0 obj
<< /Length 11791
>>
stream
@@ -169971,7 +170075,7 @@ Q
endstream
endobj
-998 0 obj
+1000 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -169979,7 +170083,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 997 0 R
+/Contents 999 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
@@ -169988,13 +170092,13 @@ endobj
>>
>>
endobj
-999 0 obj
-[998 0 R /XYZ 0 493.195 null]
-endobj
-1000 0 obj
-[998 0 R /XYZ 0 277.855 null]
-endobj
1001 0 obj
+[1000 0 R /XYZ 0 493.195 null]
+endobj
+1002 0 obj
+[1000 0 R /XYZ 0 277.855 null]
+endobj
+1003 0 obj
<< /Length 19609
>>
stream
@@ -171458,7 +171562,7 @@ Q
endstream
endobj
-1002 0 obj
+1004 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -171466,7 +171570,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1001 0 R
+/Contents 1003 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -171474,7 +171578,7 @@ endobj
>>
>>
endobj
-1003 0 obj
+1005 0 obj
<< /Length 12560
>>
stream
@@ -172317,7 +172421,7 @@ Q
endstream
endobj
-1004 0 obj
+1006 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -172325,7 +172429,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1003 0 R
+/Contents 1005 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -172335,15 +172439,15 @@ endobj
>>
>>
endobj
-1005 0 obj
-[1004 0 R /XYZ 0 425.85 null]
+1007 0 obj
+[1006 0 R /XYZ 0 425.85 null]
endobj
-1006 0 obj
+1008 0 obj
<< /Limits [(gradle-snapshot-versions) (how-to-not-write-contracts-in-groovy)]
-/Names [(gradle-snapshot-versions) 989 0 R (how-to-api-versioning) 1157 0 R (how-to-common-repo-with-contracts) 1162 0 R (how-to-debug) 1268 0 R (how-to-debug-wiremock) 1272 0 R (how-to-define-messaging-contracts-per-topic) 1199 0 R (how-to-define-messaging-contracts-per-topic-gradle) 1203 0 R (how-to-define-messaging-contracts-per-topic-maven) 1200 0 R (how-to-dev-or-prod-stubs) 1161 0 R (how-to-do-stubs-versioning) 1151 0 R (how-to-generate-pact-from-scc) 1277 0 R (how-to-generate-stubs-at-runtime) 1298 0 R (how-to-jar-versioning) 1158 0 R (how-to-mark-contract-in-progress) 1302 0 R (how-to-not-write-contracts-in-groovy) 1141 0 R]
+/Names [(gradle-snapshot-versions) 991 0 R (how-to-api-versioning) 1159 0 R (how-to-common-repo-with-contracts) 1164 0 R (how-to-debug) 1270 0 R (how-to-debug-wiremock) 1274 0 R (how-to-define-messaging-contracts-per-topic) 1201 0 R (how-to-define-messaging-contracts-per-topic-gradle) 1205 0 R (how-to-define-messaging-contracts-per-topic-maven) 1202 0 R (how-to-dev-or-prod-stubs) 1163 0 R (how-to-do-stubs-versioning) 1153 0 R (how-to-generate-pact-from-scc) 1279 0 R (how-to-generate-stubs-at-runtime) 1300 0 R (how-to-jar-versioning) 1160 0 R (how-to-mark-contract-in-progress) 1304 0 R (how-to-not-write-contracts-in-groovy) 1143 0 R]
>>
endobj
-1007 0 obj
+1009 0 obj
<< /Length 16481
>>
stream
@@ -173465,7 +173569,7 @@ Q
endstream
endobj
-1008 0 obj
+1010 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -173473,7 +173577,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1007 0 R
+/Contents 1009 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -173482,21 +173586,21 @@ endobj
>>
>>
endobj
-1009 0 obj
-[1008 0 R /XYZ 0 730.77 null]
-endobj
-1010 0 obj
-[1008 0 R /XYZ 0 597.57 null]
-endobj
1011 0 obj
-[1008 0 R /XYZ 0 384.87 null]
+[1010 0 R /XYZ 0 730.77 null]
endobj
1012 0 obj
+[1010 0 R /XYZ 0 597.57 null]
+endobj
+1013 0 obj
+[1010 0 R /XYZ 0 384.87 null]
+endobj
+1014 0 obj
<< /Limits [(contract-dsl-description) (contract-dsl-name)]
/Names [(contract-dsl-description) 316 0 R (contract-dsl-dynamic-properties) 395 0 R (contract-dsl-dynamic-properties-in-body) 398 0 R (contract-dsl-http-top-level-elements) 343 0 R (contract-dsl-ignoring-contracts) 324 0 R (contract-dsl-in-progress) 328 0 R (contract-dsl-matchers) 465 0 R (contract-dsl-messaging-common) 578 0 R (contract-dsl-messaging-top-level) 560 0 R (contract-dsl-multiple) 515 0 R (contract-dsl-name) 321 0 R]
>>
endobj
-1013 0 obj
+1015 0 obj
<< /Length 12099
>>
stream
@@ -174241,7 +174345,7 @@ Q
endstream
endobj
-1014 0 obj
+1016 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -174249,7 +174353,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1013 0 R
+/Contents 1015 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -174257,16 +174361,16 @@ endobj
/F4.1 46 0 R
>>
>>
-/Annots [1017 0 R]
+/Annots [1019 0 R]
>>
endobj
-1015 0 obj
-[1014 0 R /XYZ 0 778.86 null]
-endobj
-1016 0 obj
-[1014 0 R /XYZ 0 622.48 null]
-endobj
1017 0 obj
+[1016 0 R /XYZ 0 778.86 null]
+endobj
+1018 0 obj
+[1016 0 R /XYZ 0 622.48 null]
+endobj
+1019 0 obj
<< /Border [0 0 0]
/Dest (scm-stub-downloader)
/Subtype /Link
@@ -174274,10 +174378,10 @@ endobj
/Type /Annot
>>
endobj
-1018 0 obj
-[1014 0 R /XYZ 0 375.2 null]
+1020 0 obj
+[1016 0 R /XYZ 0 375.2 null]
endobj
-1019 0 obj
+1021 0 obj
<< /Length 6121
>>
stream
@@ -174667,7 +174771,7 @@ Q
endstream
endobj
-1020 0 obj
+1022 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -174675,7 +174779,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1019 0 R
+/Contents 1021 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -174683,7 +174787,7 @@ endobj
>>
>>
endobj
-1021 0 obj
+1023 0 obj
<< /Length 16596
>>
stream
@@ -175843,7 +175947,7 @@ Q
endstream
endobj
-1022 0 obj
+1024 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -175851,7 +175955,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1021 0 R
+/Contents 1023 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -175860,16 +175964,16 @@ endobj
/F1.1 9 0 R
>>
>>
-/Annots [1025 0 R 1026 0 R 1027 0 R]
+/Annots [1027 0 R 1028 0 R 1029 0 R]
>>
endobj
-1023 0 obj
-[1022 0 R /XYZ 0 841.89 null]
-endobj
-1024 0 obj
-[1022 0 R /XYZ 0 626.49 null]
-endobj
1025 0 obj
+[1024 0 R /XYZ 0 841.89 null]
+endobj
+1026 0 obj
+[1024 0 R /XYZ 0 626.49 null]
+endobj
+1027 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -175880,7 +175984,7 @@ endobj
/Type /Annot
>>
endobj
-1026 0 obj
+1028 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -175891,7 +175995,7 @@ endobj
/Type /Annot
>>
endobj
-1027 0 obj
+1029 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -175902,7 +176006,7 @@ endobj
/Type /Annot
>>
endobj
-1028 0 obj
+1030 0 obj
<< /Length 19506
>>
stream
@@ -177391,7 +177495,7 @@ Q
endstream
endobj
-1029 0 obj
+1031 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -177399,20 +177503,20 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1028 0 R
+/Contents 1030 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
/F3.0 33 0 R
>>
>>
-/Annots [1031 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R]
+/Annots [1033 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R]
>>
endobj
-1030 0 obj
-[1029 0 R /XYZ 0 841.89 null]
+1032 0 obj
+[1031 0 R /XYZ 0 841.89 null]
endobj
-1031 0 obj
+1033 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177423,10 +177527,10 @@ endobj
/Type /Annot
>>
endobj
-1032 0 obj
-[1029 0 R /XYZ 0 606.15 null]
+1034 0 obj
+[1031 0 R /XYZ 0 606.15 null]
endobj
-1033 0 obj
+1035 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177437,7 +177541,7 @@ endobj
/Type /Annot
>>
endobj
-1034 0 obj
+1036 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177448,7 +177552,7 @@ endobj
/Type /Annot
>>
endobj
-1035 0 obj
+1037 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177459,7 +177563,7 @@ endobj
/Type /Annot
>>
endobj
-1036 0 obj
+1038 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177470,7 +177574,7 @@ endobj
/Type /Annot
>>
endobj
-1037 0 obj
+1039 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177481,7 +177585,7 @@ endobj
/Type /Annot
>>
endobj
-1038 0 obj
+1040 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177492,7 +177596,7 @@ endobj
/Type /Annot
>>
endobj
-1039 0 obj
+1041 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177503,7 +177607,7 @@ endobj
/Type /Annot
>>
endobj
-1040 0 obj
+1042 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177514,7 +177618,7 @@ endobj
/Type /Annot
>>
endobj
-1041 0 obj
+1043 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177525,7 +177629,7 @@ endobj
/Type /Annot
>>
endobj
-1042 0 obj
+1044 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177536,7 +177640,7 @@ endobj
/Type /Annot
>>
endobj
-1043 0 obj
+1045 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177547,7 +177651,7 @@ endobj
/Type /Annot
>>
endobj
-1044 0 obj
+1046 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -177558,7 +177662,7 @@ endobj
/Type /Annot
>>
endobj
-1045 0 obj
+1047 0 obj
<< /Length 16222
>>
stream
@@ -178675,7 +178779,7 @@ Q
endstream
endobj
-1046 0 obj
+1048 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -178683,7 +178787,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1045 0 R
+/Contents 1047 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -178693,10 +178797,10 @@ endobj
>>
>>
endobj
-1047 0 obj
-[1046 0 R /XYZ 0 399.04 null]
+1049 0 obj
+[1048 0 R /XYZ 0 399.04 null]
endobj
-1048 0 obj
+1050 0 obj
<< /Length 10967
>>
stream
@@ -179399,7 +179503,7 @@ Q
endstream
endobj
-1049 0 obj
+1051 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -179407,7 +179511,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1048 0 R
+/Contents 1050 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -179416,7 +179520,7 @@ endobj
>>
>>
endobj
-1050 0 obj
+1052 0 obj
<< /Length 10301
>>
stream
@@ -180116,7 +180220,7 @@ Q
endstream
endobj
-1051 0 obj
+1053 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -180124,7 +180228,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1050 0 R
+/Contents 1052 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.1 9 0 R
/F1.0 8 0 R
@@ -180132,10 +180236,10 @@ endobj
/F2.0 22 0 R
>>
>>
-/Annots [1052 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R 1059 0 R 1061 0 R]
+/Annots [1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1061 0 R 1063 0 R]
>>
endobj
-1052 0 obj
+1054 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -180146,7 +180250,7 @@ endobj
/Type /Annot
>>
endobj
-1053 0 obj
+1055 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -180157,7 +180261,7 @@ endobj
/Type /Annot
>>
endobj
-1054 0 obj
+1056 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -180168,7 +180272,7 @@ endobj
/Type /Annot
>>
endobj
-1055 0 obj
+1057 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -180179,7 +180283,7 @@ endobj
/Type /Annot
>>
endobj
-1056 0 obj
+1058 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -180190,13 +180294,13 @@ endobj
/Type /Annot
>>
endobj
-1057 0 obj
-[1051 0 R /XYZ 0 693.21 null]
-endobj
-1058 0 obj
-[1051 0 R /XYZ 0 581.79 null]
-endobj
1059 0 obj
+[1053 0 R /XYZ 0 693.21 null]
+endobj
+1060 0 obj
+[1053 0 R /XYZ 0 581.79 null]
+endobj
+1061 0 obj
<< /Border [0 0 0]
/Dest (features-stub-runner-common-properties-junit-spring)
/Subtype /Link
@@ -180204,10 +180308,10 @@ endobj
/Type /Annot
>>
endobj
-1060 0 obj
-[1051 0 R /XYZ 0 473.39 null]
+1062 0 obj
+[1053 0 R /XYZ 0 473.39 null]
endobj
-1061 0 obj
+1063 0 obj
<< /Border [0 0 0]
/Dest (docker-server-side)
/Subtype /Link
@@ -180215,7 +180319,7 @@ endobj
/Type /Annot
>>
endobj
-1062 0 obj
+1064 0 obj
<< /Length 13925
>>
stream
@@ -181087,7 +181191,7 @@ Q
endstream
endobj
-1063 0 obj
+1065 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -181095,17 +181199,17 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1062 0 R
+/Contents 1064 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
/F4.1 46 0 R
>>
>>
-/Annots [1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R]
+/Annots [1066 0 R 1067 0 R 1068 0 R 1069 0 R 1070 0 R 1071 0 R]
>>
endobj
-1064 0 obj
+1066 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -181116,7 +181220,7 @@ endobj
/Type /Annot
>>
endobj
-1065 0 obj
+1067 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -181127,7 +181231,7 @@ endobj
/Type /Annot
>>
endobj
-1066 0 obj
+1068 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -181138,7 +181242,7 @@ endobj
/Type /Annot
>>
endobj
-1067 0 obj
+1069 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -181149,7 +181253,7 @@ endobj
/Type /Annot
>>
endobj
-1068 0 obj
+1070 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -181160,7 +181264,7 @@ endobj
/Type /Annot
>>
endobj
-1069 0 obj
+1071 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -181171,7 +181275,7 @@ endobj
/Type /Annot
>>
endobj
-1070 0 obj
+1072 0 obj
<< /Length 4834
>>
stream
@@ -181488,7 +181592,7 @@ Q
endstream
endobj
-1071 0 obj
+1073 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -181496,7 +181600,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1070 0 R
+/Contents 1072 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -181504,24 +181608,24 @@ endobj
/F3.0 33 0 R
>>
>>
-/Annots [1076 0 R]
+/Annots [1078 0 R]
>>
endobj
-1072 0 obj
-[1071 0 R /XYZ 0 841.89 null]
-endobj
-1073 0 obj
-[1071 0 R /XYZ 0 707.47 null]
-endobj
1074 0 obj
-[1071 0 R /XYZ 0 588.05 null]
+[1073 0 R /XYZ 0 841.89 null]
endobj
1075 0 obj
-<< /Limits [(feature-integrations) (features-messaging-integrations)]
-/Names [(feature-integrations) 529 0 R (feature-webflux) 533 0 R (feature-webflux-explicit) 536 0 R (features) 280 0 R (features-build-tools) 880 0 R (features-context-paths) 539 0 R (features-http) 342 0 R (features-jax-rs) 530 0 R (features-messaging) 559 0 R (features-messaging-consumer) 612 0 R (features-messaging-integrations) 579 0 R]
->>
+[1073 0 R /XYZ 0 707.47 null]
endobj
1076 0 obj
+[1073 0 R /XYZ 0 588.05 null]
+endobj
+1077 0 obj
+<< /Limits [(feature-integrations) (features-messaging-integrations)]
+/Names [(feature-integrations) 529 0 R (feature-webflux) 533 0 R (feature-webflux-explicit) 536 0 R (features) 280 0 R (features-build-tools) 882 0 R (features-context-paths) 539 0 R (features-http) 342 0 R (features-jax-rs) 530 0 R (features-messaging) 559 0 R (features-messaging-consumer) 612 0 R (features-messaging-integrations) 579 0 R]
+>>
+endobj
+1078 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -181532,10 +181636,10 @@ endobj
/Type /Annot
>>
endobj
-1077 0 obj
-[1071 0 R /XYZ 0 433.87 null]
+1079 0 obj
+[1073 0 R /XYZ 0 433.87 null]
endobj
-1078 0 obj
+1080 0 obj
<< /Length 7831
>>
stream
@@ -182077,7 +182181,7 @@ Q
endstream
endobj
-1079 0 obj
+1081 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -182085,14 +182189,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1078 0 R
+/Contents 1080 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-1080 0 obj
+1082 0 obj
<< /Length 769
>>
stream
@@ -182155,7 +182259,7 @@ Q
endstream
endobj
-1081 0 obj
+1083 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -182163,7 +182267,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1080 0 R
+/Contents 1082 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -182171,7 +182275,7 @@ endobj
>>
>>
endobj
-1082 0 obj
+1084 0 obj
<< /Length 8635
>>
stream
@@ -182724,7 +182828,7 @@ Q
endstream
endobj
-1083 0 obj
+1085 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -182732,14 +182836,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1082 0 R
+/Contents 1084 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-1084 0 obj
+1086 0 obj
<< /Length 8667
>>
stream
@@ -183296,7 +183400,7 @@ Q
endstream
endobj
-1085 0 obj
+1087 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -183304,7 +183408,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1084 0 R
+/Contents 1086 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -183312,7 +183416,7 @@ endobj
>>
>>
endobj
-1086 0 obj
+1088 0 obj
<< /Length 5425
>>
stream
@@ -183607,7 +183711,7 @@ Q
endstream
endobj
-1087 0 obj
+1089 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -183615,7 +183719,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1086 0 R
+/Contents 1088 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -183625,13 +183729,13 @@ endobj
>>
>>
endobj
-1088 0 obj
-[1087 0 R /XYZ 0 841.89 null]
-endobj
-1089 0 obj
-[1087 0 R /XYZ 0 469.128 null]
-endobj
1090 0 obj
+[1089 0 R /XYZ 0 841.89 null]
+endobj
+1091 0 obj
+[1089 0 R /XYZ 0 469.128 null]
+endobj
+1092 0 obj
<< /Length 7065
>>
stream
@@ -184044,7 +184148,7 @@ Q
endstream
endobj
-1091 0 obj
+1093 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -184052,7 +184156,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1090 0 R
+/Contents 1092 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -184062,10 +184166,10 @@ endobj
>>
>>
endobj
-1092 0 obj
-[1091 0 R /XYZ 0 307.408 null]
+1094 0 obj
+[1093 0 R /XYZ 0 307.408 null]
endobj
-1093 0 obj
+1095 0 obj
<< /Length 8672
>>
stream
@@ -184686,7 +184790,7 @@ Q
endstream
endobj
-1094 0 obj
+1096 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -184694,7 +184798,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1093 0 R
+/Contents 1095 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F4.1 46 0 R
@@ -184703,7 +184807,7 @@ endobj
>>
>>
endobj
-1095 0 obj
+1097 0 obj
<< /Length 5819
>>
stream
@@ -185048,7 +185152,7 @@ Q
endstream
endobj
-1096 0 obj
+1098 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -185056,20 +185160,20 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1095 0 R
+/Contents 1097 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
/F3.0 33 0 R
>>
>>
-/Annots [1098 0 R]
+/Annots [1100 0 R]
>>
endobj
-1097 0 obj
-[1096 0 R /XYZ 0 841.89 null]
+1099 0 obj
+[1098 0 R /XYZ 0 841.89 null]
endobj
-1098 0 obj
+1100 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -185080,10 +185184,10 @@ endobj
/Type /Annot
>>
endobj
-1099 0 obj
-[1096 0 R /XYZ 0 742.83 null]
+1101 0 obj
+[1098 0 R /XYZ 0 742.83 null]
endobj
-1100 0 obj
+1102 0 obj
<< /Length 8805
>>
stream
@@ -185648,7 +185752,7 @@ Q
endstream
endobj
-1101 0 obj
+1103 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -185656,7 +185760,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1100 0 R
+/Contents 1102 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -185666,7 +185770,7 @@ endobj
>>
>>
endobj
-1102 0 obj
+1104 0 obj
<< /Length 7510
>>
stream
@@ -186098,7 +186202,7 @@ Q
endstream
endobj
-1103 0 obj
+1105 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -186106,7 +186210,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1102 0 R
+/Contents 1104 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -186115,16 +186219,16 @@ endobj
>>
>>
endobj
-1104 0 obj
-[1103 0 R /XYZ 0 841.89 null]
-endobj
-1105 0 obj
-[1103 0 R /XYZ 0 511.63 null]
-endobj
1106 0 obj
-[1103 0 R /XYZ 0 364.87 null]
+[1105 0 R /XYZ 0 841.89 null]
endobj
1107 0 obj
+[1105 0 R /XYZ 0 511.63 null]
+endobj
+1108 0 obj
+[1105 0 R /XYZ 0 364.87 null]
+endobj
+1109 0 obj
<< /Length 8858
>>
stream
@@ -186671,7 +186775,7 @@ Q
endstream
endobj
-1108 0 obj
+1110 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -186679,7 +186783,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1107 0 R
+/Contents 1109 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -186688,7 +186792,7 @@ endobj
>>
>>
endobj
-1109 0 obj
+1111 0 obj
<< /Length 10475
>>
stream
@@ -187304,7 +187408,7 @@ Q
endstream
endobj
-1110 0 obj
+1112 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -187312,7 +187416,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1109 0 R
+/Contents 1111 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -187321,10 +187425,10 @@ endobj
>>
>>
endobj
-1111 0 obj
-[1110 0 R /XYZ 0 691.38 null]
+1113 0 obj
+[1112 0 R /XYZ 0 691.38 null]
endobj
-1112 0 obj
+1114 0 obj
<< /Length 9066
>>
stream
@@ -187855,7 +187959,7 @@ Q
endstream
endobj
-1113 0 obj
+1115 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -187863,14 +187967,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1112 0 R
+/Contents 1114 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-1114 0 obj
+1116 0 obj
<< /Length 10181
>>
stream
@@ -188497,7 +188601,7 @@ Q
endstream
endobj
-1115 0 obj
+1117 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -188505,7 +188609,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1114 0 R
+/Contents 1116 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -188514,15 +188618,15 @@ endobj
>>
>>
endobj
-1116 0 obj
-[1115 0 R /XYZ 0 613.775 null]
+1118 0 obj
+[1117 0 R /XYZ 0 613.775 null]
endobj
-1117 0 obj
+1119 0 obj
<< /Limits [(customization-wiremock) (docker-stubrunner-example)]
-/Names [(customization-wiremock) 1097 0 R (customization-wiremock-configuration) 1104 0 R (customization-wiremock-extension) 1099 0 R (default-application-properties) 1305 0 R (docker) 1023 0 R (docker-env-vars) 1032 0 R (docker-example-of-usage) 1047 0 R (docker-how-it-works) 1030 0 R (docker-intro) 1024 0 R (docker-stubrunner) 1057 0 R (docker-stubrunner-env-vars) 1058 0 R (docker-stubrunner-example) 1060 0 R]
+/Names [(customization-wiremock) 1099 0 R (customization-wiremock-configuration) 1106 0 R (customization-wiremock-extension) 1101 0 R (default-application-properties) 1307 0 R (docker) 1025 0 R (docker-env-vars) 1034 0 R (docker-example-of-usage) 1049 0 R (docker-how-it-works) 1032 0 R (docker-intro) 1026 0 R (docker-stubrunner) 1059 0 R (docker-stubrunner-env-vars) 1060 0 R (docker-stubrunner-example) 1062 0 R]
>>
endobj
-1118 0 obj
+1120 0 obj
<< /Length 9564
>>
stream
@@ -189080,7 +189184,7 @@ Q
endstream
endobj
-1119 0 obj
+1121 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -189088,7 +189192,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1118 0 R
+/Contents 1120 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -189098,10 +189202,10 @@ endobj
>>
>>
endobj
-1120 0 obj
-[1119 0 R /XYZ 0 121.715 null]
+1122 0 obj
+[1121 0 R /XYZ 0 121.715 null]
endobj
-1121 0 obj
+1123 0 obj
<< /Length 8258
>>
stream
@@ -189641,7 +189745,7 @@ Q
endstream
endobj
-1122 0 obj
+1124 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -189649,16 +189753,16 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1121 0 R
+/Contents 1123 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
>>
>>
-/Annots [1123 0 R]
+/Annots [1125 0 R]
>>
endobj
-1123 0 obj
+1125 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -189669,7 +189773,7 @@ endobj
/Type /Annot
>>
endobj
-1124 0 obj
+1126 0 obj
<< /Length 9226
>>
stream
@@ -190256,7 +190360,7 @@ Q
endstream
endobj
-1125 0 obj
+1127 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -190264,7 +190368,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1124 0 R
+/Contents 1126 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -190272,7 +190376,7 @@ endobj
>>
>>
endobj
-1126 0 obj
+1128 0 obj
<< /Length 9161
>>
stream
@@ -190780,7 +190884,7 @@ Q
endstream
endobj
-1127 0 obj
+1129 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -190788,7 +190892,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1126 0 R
+/Contents 1128 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F4.1 46 0 R
@@ -190798,10 +190902,10 @@ endobj
>>
>>
endobj
-1128 0 obj
-[1127 0 R /XYZ 0 726.55 null]
+1130 0 obj
+[1129 0 R /XYZ 0 726.55 null]
endobj
-1129 0 obj
+1131 0 obj
<< /Length 13481
>>
stream
@@ -191820,7 +191924,7 @@ Q
endstream
endobj
-1130 0 obj
+1132 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -191828,7 +191932,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1129 0 R
+/Contents 1131 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F4.1 46 0 R
/F1.0 8 0 R
@@ -191839,10 +191943,10 @@ endobj
>>
>>
endobj
-1131 0 obj
-[1130 0 R /XYZ 0 722.77 null]
+1133 0 obj
+[1132 0 R /XYZ 0 722.77 null]
endobj
-1132 0 obj
+1134 0 obj
<< /Length 5906
>>
stream
@@ -192322,7 +192426,7 @@ Q
endstream
endobj
-1133 0 obj
+1135 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -192330,7 +192434,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1132 0 R
+/Contents 1134 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -192338,7 +192442,7 @@ endobj
>>
>>
endobj
-1134 0 obj
+1136 0 obj
<< /Length 10302
>>
stream
@@ -192954,7 +193058,7 @@ Q
endstream
endobj
-1135 0 obj
+1137 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -192962,20 +193066,20 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1134 0 R
+/Contents 1136 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
/F3.0 33 0 R
>>
>>
-/Annots [1137 0 R 1138 0 R 1139 0 R 1142 0 R 1143 0 R]
+/Annots [1139 0 R 1140 0 R 1141 0 R 1144 0 R 1145 0 R]
>>
endobj
-1136 0 obj
-[1135 0 R /XYZ 0 841.89 null]
+1138 0 obj
+[1137 0 R /XYZ 0 841.89 null]
endobj
-1137 0 obj
+1139 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -192986,7 +193090,7 @@ endobj
/Type /Annot
>>
endobj
-1138 0 obj
+1140 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -192997,7 +193101,7 @@ endobj
/Type /Annot
>>
endobj
-1139 0 obj
+1141 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -193008,13 +193112,13 @@ endobj
/Type /Annot
>>
endobj
-1140 0 obj
-[1135 0 R /XYZ 0 618.71 null]
-endobj
-1141 0 obj
-[1135 0 R /XYZ 0 307.49 null]
-endobj
1142 0 obj
+[1137 0 R /XYZ 0 618.71 null]
+endobj
+1143 0 obj
+[1137 0 R /XYZ 0 307.49 null]
+endobj
+1144 0 obj
<< /Border [0 0 0]
/Dest (contract-dsl)
/Subtype /Link
@@ -193022,7 +193126,7 @@ endobj
/Type /Annot
>>
endobj
-1143 0 obj
+1145 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -193033,10 +193137,10 @@ endobj
/Type /Annot
>>
endobj
-1144 0 obj
-[1135 0 R /XYZ 0 171.59 null]
+1146 0 obj
+[1137 0 R /XYZ 0 171.59 null]
endobj
-1145 0 obj
+1147 0 obj
<< /Length 12067
>>
stream
@@ -193741,7 +193845,7 @@ Q
endstream
endobj
-1146 0 obj
+1148 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -193749,7 +193853,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1145 0 R
+/Contents 1147 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -193757,7 +193861,7 @@ endobj
>>
>>
endobj
-1147 0 obj
+1149 0 obj
<< /Length 10991
>>
stream
@@ -194421,7 +194525,7 @@ Q
endstream
endobj
-1148 0 obj
+1150 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -194429,7 +194533,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1147 0 R
+/Contents 1149 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -194437,10 +194541,10 @@ endobj
/F2.0 22 0 R
>>
>>
-/Annots [1149 0 R 1150 0 R 1152 0 R 1153 0 R 1154 0 R]
+/Annots [1151 0 R 1152 0 R 1154 0 R 1155 0 R 1156 0 R]
>>
endobj
-1149 0 obj
+1151 0 obj
<< /Border [0 0 0]
/Dest (contract-dsl)
/Subtype /Link
@@ -194448,7 +194552,7 @@ endobj
/Type /Annot
>>
endobj
-1150 0 obj
+1152 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -194459,10 +194563,10 @@ endobj
/Type /Annot
>>
endobj
-1151 0 obj
-[1148 0 R /XYZ 0 237.79 null]
+1153 0 obj
+[1150 0 R /XYZ 0 237.79 null]
endobj
-1152 0 obj
+1154 0 obj
<< /Border [0 0 0]
/Dest (how-to-api-versioning)
/Subtype /Link
@@ -194470,7 +194574,7 @@ endobj
/Type /Annot
>>
endobj
-1153 0 obj
+1155 0 obj
<< /Border [0 0 0]
/Dest (how-to-jar-versioning)
/Subtype /Link
@@ -194478,7 +194582,7 @@ endobj
/Type /Annot
>>
endobj
-1154 0 obj
+1156 0 obj
<< /Border [0 0 0]
/Dest (how-to-dev-or-prod-stubs)
/Subtype /Link
@@ -194486,7 +194590,7 @@ endobj
/Type /Annot
>>
endobj
-1155 0 obj
+1157 0 obj
<< /Length 11796
>>
stream
@@ -195162,7 +195266,7 @@ Q
endstream
endobj
-1156 0 obj
+1158 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -195170,7 +195274,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1155 0 R
+/Contents 1157 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -195180,13 +195284,13 @@ endobj
>>
>>
endobj
-1157 0 obj
-[1156 0 R /XYZ 0 841.89 null]
-endobj
-1158 0 obj
-[1156 0 R /XYZ 0 597.17 null]
-endobj
1159 0 obj
+[1158 0 R /XYZ 0 841.89 null]
+endobj
+1160 0 obj
+[1158 0 R /XYZ 0 597.17 null]
+endobj
+1161 0 obj
<< /Length 11043
>>
stream
@@ -195783,7 +195887,7 @@ Q
endstream
endobj
-1160 0 obj
+1162 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -195791,26 +195895,26 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1159 0 R
+/Contents 1161 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
/F1.0 8 0 R
>>
>>
-/Annots [1164 0 R]
+/Annots [1166 0 R]
>>
endobj
-1161 0 obj
-[1160 0 R /XYZ 0 733.15 null]
-endobj
-1162 0 obj
-[1160 0 R /XYZ 0 395.93 null]
-endobj
1163 0 obj
-[1160 0 R /XYZ 0 256.25 null]
+[1162 0 R /XYZ 0 733.15 null]
endobj
1164 0 obj
+[1162 0 R /XYZ 0 395.93 null]
+endobj
+1165 0 obj
+[1162 0 R /XYZ 0 256.25 null]
+endobj
+1166 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -195821,7 +195925,7 @@ endobj
/Type /Annot
>>
endobj
-1165 0 obj
+1167 0 obj
<< /Length 12651
>>
stream
@@ -196682,7 +196786,7 @@ Q
endstream
endobj
-1166 0 obj
+1168 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -196690,7 +196794,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1165 0 R
+/Contents 1167 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.1 64 0 R
/F3.0 33 0 R
@@ -196699,7 +196803,7 @@ endobj
>>
>>
endobj
-1167 0 obj
+1169 0 obj
<< /Length 9489
>>
stream
@@ -197285,7 +197389,7 @@ Q
endstream
endobj
-1168 0 obj
+1170 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -197293,14 +197397,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1167 0 R
+/Contents 1169 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-1169 0 obj
+1171 0 obj
<< /Length 8589
>>
stream
@@ -197860,7 +197964,7 @@ Q
endstream
endobj
-1170 0 obj
+1172 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -197868,7 +197972,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1169 0 R
+/Contents 1171 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -197876,7 +197980,7 @@ endobj
>>
>>
endobj
-1171 0 obj
+1173 0 obj
<< /Length 9038
>>
stream
@@ -198418,7 +198522,7 @@ Q
endstream
endobj
-1172 0 obj
+1174 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -198426,14 +198530,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1171 0 R
+/Contents 1173 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-1173 0 obj
+1175 0 obj
<< /Length 10331
>>
stream
@@ -199055,7 +199159,7 @@ Q
endstream
endobj
-1174 0 obj
+1176 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -199063,7 +199167,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1173 0 R
+/Contents 1175 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -199072,31 +199176,31 @@ endobj
/F6.1 68 0 R
>>
>>
-/Annots [1180 0 R]
->>
-endobj
-1175 0 obj
-[1174 0 R /XYZ 0 335.83 null]
-endobj
-1176 0 obj
-<< /Limits [(how-to-workflow-consumer) (maven-pushing-stubs-to-scm)]
-/Names [(how-to-workflow-consumer) 1179 0 R (how-to-workflow-producer) 1183 0 R (howto) 1136 0 R (legal) 21 0 R (maven-add-plugin) 906 0 R (maven-add-stubs) 920 0 R (maven-configuration-options) 925 0 R (maven-configure-plugin) 922 0 R (maven-different-base) 936 0 R (maven-invoking-generated-tests) 941 0 R (maven-plugin-with-spock-tests) 953 0 R (maven-project) 892 0 R (maven-pushing-stubs-to-scm) 944 0 R]
+/Annots [1182 0 R]
>>
endobj
1177 0 obj
-<< /Limits [(additional-application-properties) (features-rest-docs)]
-/Kids [121 0 R 1012 0 R 440 0 R 325 0 R 1117 0 R 1075 0 R 628 0 R 647 0 R 718 0 R 678 0 R]
->>
+[1176 0 R /XYZ 0 335.83 null]
endobj
1178 0 obj
-<< /Limits [(features-rest-docs-contracts) (yaml)]
-/Kids [580 0 R 805 0 R 759 0 R 875 0 R 241 0 R 164 0 R 122 0 R 917 0 R 1006 0 R 1235 0 R 1283 0 R 1176 0 R 954 0 R]
+<< /Limits [(how-to-workflow-consumer) (maven-pushing-stubs-to-scm)]
+/Names [(how-to-workflow-consumer) 1181 0 R (how-to-workflow-producer) 1185 0 R (howto) 1138 0 R (legal) 21 0 R (maven-add-plugin) 908 0 R (maven-add-stubs) 922 0 R (maven-configuration-options) 927 0 R (maven-configure-plugin) 924 0 R (maven-different-base) 938 0 R (maven-invoking-generated-tests) 943 0 R (maven-plugin-with-spock-tests) 955 0 R (maven-project) 894 0 R (maven-pushing-stubs-to-scm) 946 0 R]
>>
endobj
1179 0 obj
-[1174 0 R /XYZ 0 199.65 null]
+<< /Limits [(additional-application-properties) (features-rest-docs)]
+/Kids [121 0 R 1014 0 R 440 0 R 325 0 R 1119 0 R 1077 0 R 628 0 R 647 0 R 718 0 R 678 0 R]
+>>
endobj
1180 0 obj
+<< /Limits [(features-rest-docs-contracts) (yaml)]
+/Kids [580 0 R 805 0 R 759 0 R 877 0 R 241 0 R 164 0 R 122 0 R 919 0 R 1008 0 R 1237 0 R 1285 0 R 1178 0 R 956 0 R]
+>>
+endobj
+1181 0 obj
+[1176 0 R /XYZ 0 199.65 null]
+endobj
+1182 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -199107,7 +199211,7 @@ endobj
/Type /Annot
>>
endobj
-1181 0 obj
+1183 0 obj
<< /Length 13121
>>
stream
@@ -199994,7 +200098,7 @@ Q
endstream
endobj
-1182 0 obj
+1184 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -200002,20 +200106,20 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1181 0 R
+/Contents 1183 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
/F3.0 33 0 R
>>
>>
-/Annots [1184 0 R 1185 0 R 1186 0 R 1187 0 R 1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R 1193 0 R 1194 0 R 1195 0 R 1196 0 R 1197 0 R 1198 0 R]
+/Annots [1186 0 R 1187 0 R 1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R 1193 0 R 1194 0 R 1195 0 R 1196 0 R 1197 0 R 1198 0 R 1199 0 R 1200 0 R]
>>
endobj
-1183 0 obj
-[1182 0 R /XYZ 0 841.89 null]
+1185 0 obj
+[1184 0 R /XYZ 0 841.89 null]
endobj
-1184 0 obj
+1186 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200026,7 +200130,7 @@ endobj
/Type /Annot
>>
endobj
-1185 0 obj
+1187 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200037,7 +200141,7 @@ endobj
/Type /Annot
>>
endobj
-1186 0 obj
+1188 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200048,7 +200152,7 @@ endobj
/Type /Annot
>>
endobj
-1187 0 obj
+1189 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200059,7 +200163,7 @@ endobj
/Type /Annot
>>
endobj
-1188 0 obj
+1190 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200070,7 +200174,7 @@ endobj
/Type /Annot
>>
endobj
-1189 0 obj
+1191 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200081,7 +200185,7 @@ endobj
/Type /Annot
>>
endobj
-1190 0 obj
+1192 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200092,7 +200196,7 @@ endobj
/Type /Annot
>>
endobj
-1191 0 obj
+1193 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200103,7 +200207,7 @@ endobj
/Type /Annot
>>
endobj
-1192 0 obj
+1194 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200114,7 +200218,7 @@ endobj
/Type /Annot
>>
endobj
-1193 0 obj
+1195 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200125,7 +200229,7 @@ endobj
/Type /Annot
>>
endobj
-1194 0 obj
+1196 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200136,7 +200240,7 @@ endobj
/Type /Annot
>>
endobj
-1195 0 obj
+1197 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200147,7 +200251,7 @@ endobj
/Type /Annot
>>
endobj
-1196 0 obj
+1198 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200158,7 +200262,7 @@ endobj
/Type /Annot
>>
endobj
-1197 0 obj
+1199 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200169,7 +200273,7 @@ endobj
/Type /Annot
>>
endobj
-1198 0 obj
+1200 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -200180,13 +200284,13 @@ endobj
/Type /Annot
>>
endobj
-1199 0 obj
-[1182 0 R /XYZ 0 350.81 null]
-endobj
-1200 0 obj
-[1182 0 R /XYZ 0 240.51 null]
-endobj
1201 0 obj
+[1184 0 R /XYZ 0 350.81 null]
+endobj
+1202 0 obj
+[1184 0 R /XYZ 0 240.51 null]
+endobj
+1203 0 obj
<< /Length 8750
>>
stream
@@ -200699,7 +200803,7 @@ Q
endstream
endobj
-1202 0 obj
+1204 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -200707,7 +200811,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1201 0 R
+/Contents 1203 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F4.1 46 0 R
@@ -200717,10 +200821,10 @@ endobj
>>
>>
endobj
-1203 0 obj
-[1202 0 R /XYZ 0 224.65 null]
+1205 0 obj
+[1204 0 R /XYZ 0 224.65 null]
endobj
-1204 0 obj
+1206 0 obj
<< /Length 10249
>>
stream
@@ -201330,7 +201434,7 @@ Q
endstream
endobj
-1205 0 obj
+1207 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -201338,7 +201442,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1204 0 R
+/Contents 1206 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -201346,7 +201450,7 @@ endobj
>>
>>
endobj
-1206 0 obj
+1208 0 obj
<< /Length 9186
>>
stream
@@ -201866,7 +201970,7 @@ Q
endstream
endobj
-1207 0 obj
+1209 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -201874,20 +201978,20 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1206 0 R
+/Contents 1208 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
/F2.0 22 0 R
>>
>>
-/Annots [1209 0 R]
+/Annots [1211 0 R]
>>
endobj
-1208 0 obj
-[1207 0 R /XYZ 0 348.19 null]
+1210 0 obj
+[1209 0 R /XYZ 0 348.19 null]
endobj
-1209 0 obj
+1211 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -201898,7 +202002,7 @@ endobj
/Type /Annot
>>
endobj
-1210 0 obj
+1212 0 obj
<< /Length 19385
>>
stream
@@ -203378,7 +203482,7 @@ Q
endstream
endobj
-1211 0 obj
+1213 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -203386,7 +203490,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1210 0 R
+/Contents 1212 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F3.1 64 0 R
@@ -203396,7 +203500,7 @@ endobj
>>
>>
endobj
-1212 0 obj
+1214 0 obj
<< /Length 9335
>>
stream
@@ -203948,7 +204052,7 @@ Q
endstream
endobj
-1213 0 obj
+1215 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -203956,7 +204060,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1212 0 R
+/Contents 1214 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
@@ -203966,13 +204070,13 @@ endobj
>>
>>
endobj
-1214 0 obj
-[1213 0 R /XYZ 0 763.08 null]
-endobj
-1215 0 obj
-[1213 0 R /XYZ 0 463.64 null]
-endobj
1216 0 obj
+[1215 0 R /XYZ 0 763.08 null]
+endobj
+1217 0 obj
+[1215 0 R /XYZ 0 463.64 null]
+endobj
+1218 0 obj
<< /Length 6889
>>
stream
@@ -204373,7 +204477,7 @@ Q
endstream
endobj
-1217 0 obj
+1219 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -204381,7 +204485,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1216 0 R
+/Contents 1218 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -204389,7 +204493,7 @@ endobj
>>
>>
endobj
-1218 0 obj
+1220 0 obj
<< /Length 11193
>>
stream
@@ -205121,7 +205225,7 @@ Q
endstream
endobj
-1219 0 obj
+1221 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -205129,7 +205233,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1218 0 R
+/Contents 1220 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -205139,10 +205243,10 @@ endobj
>>
>>
endobj
-1220 0 obj
-[1219 0 R /XYZ 0 191.119 null]
+1222 0 obj
+[1221 0 R /XYZ 0 191.119 null]
endobj
-1221 0 obj
+1223 0 obj
<< /Length 10995
>>
stream
@@ -205761,7 +205865,7 @@ Q
endstream
endobj
-1222 0 obj
+1224 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -205769,14 +205873,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1221 0 R
+/Contents 1223 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-1223 0 obj
+1225 0 obj
<< /Length 9164
>>
stream
@@ -206366,7 +206470,7 @@ Q
endstream
endobj
-1224 0 obj
+1226 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -206374,7 +206478,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1223 0 R
+/Contents 1225 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F5.0 50 0 R
@@ -206383,7 +206487,7 @@ endobj
>>
>>
endobj
-1225 0 obj
+1227 0 obj
<< /Length 12853
>>
stream
@@ -207270,7 +207374,7 @@ Q
endstream
endobj
-1226 0 obj
+1228 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -207278,7 +207382,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1225 0 R
+/Contents 1227 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F1.1 9 0 R
@@ -207286,19 +207390,19 @@ endobj
/F2.0 22 0 R
>>
>>
-/Annots [1230 0 R 1231 0 R]
+/Annots [1232 0 R 1233 0 R]
>>
endobj
-1227 0 obj
-[1226 0 R /XYZ 0 690.99 null]
-endobj
-1228 0 obj
-[1226 0 R /XYZ 0 537.13 null]
-endobj
1229 0 obj
-[1226 0 R /XYZ 0 129.83 null]
+[1228 0 R /XYZ 0 690.99 null]
endobj
1230 0 obj
+[1228 0 R /XYZ 0 537.13 null]
+endobj
+1231 0 obj
+[1228 0 R /XYZ 0 129.83 null]
+endobj
+1232 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -207309,7 +207413,7 @@ endobj
/Type /Annot
>>
endobj
-1231 0 obj
+1233 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -207320,7 +207424,7 @@ endobj
/Type /Annot
>>
endobj
-1232 0 obj
+1234 0 obj
<< /Length 11926
>>
stream
@@ -208076,7 +208180,7 @@ Q
endstream
endobj
-1233 0 obj
+1235 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -208084,7 +208188,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1232 0 R
+/Contents 1234 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F4.1 46 0 R
@@ -208092,18 +208196,18 @@ endobj
/F3.0 33 0 R
>>
>>
-/Annots [1236 0 R]
->>
-endobj
-1234 0 obj
-[1233 0 R /XYZ 0 695.74 null]
-endobj
-1235 0 obj
-<< /Limits [(how-to-pact-consumer) (how-to-reference-text-from-file)]
-/Names [(how-to-pact-consumer) 1254 0 R (how-to-pact-consumer-producer-contract) 1262 0 R (how-to-pact-producer) 1258 0 R (how-to-protocol-convention) 1214 0 R (how-to-protocol-convention-contracts-producer-stubs-external) 1227 0 R (how-to-protocol-convention-contracts-producer-stubs-external-consumer) 1228 0 R (how-to-protocol-convention-producer) 1215 0 R (how-to-protocol-convention-producer-with-contracts-stored-locally) 1220 0 R (how-to-provide-dynamic-values) 1144 0 R (how-to-reference-text-from-file) 1276 0 R]
+/Annots [1238 0 R]
>>
endobj
1236 0 obj
+[1235 0 R /XYZ 0 695.74 null]
+endobj
+1237 0 obj
+<< /Limits [(how-to-pact-consumer) (how-to-reference-text-from-file)]
+/Names [(how-to-pact-consumer) 1256 0 R (how-to-pact-consumer-producer-contract) 1264 0 R (how-to-pact-producer) 1260 0 R (how-to-protocol-convention) 1216 0 R (how-to-protocol-convention-contracts-producer-stubs-external) 1229 0 R (how-to-protocol-convention-contracts-producer-stubs-external-consumer) 1230 0 R (how-to-protocol-convention-producer) 1217 0 R (how-to-protocol-convention-producer-with-contracts-stored-locally) 1222 0 R (how-to-provide-dynamic-values) 1146 0 R (how-to-reference-text-from-file) 1278 0 R]
+>>
+endobj
+1238 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -208114,13 +208218,13 @@ endobj
/Type /Annot
>>
endobj
-1237 0 obj
-[1233 0 R /XYZ 0 524.22 null]
-endobj
-1238 0 obj
-[1233 0 R /XYZ 0 388.04 null]
-endobj
1239 0 obj
+[1235 0 R /XYZ 0 524.22 null]
+endobj
+1240 0 obj
+[1235 0 R /XYZ 0 388.04 null]
+endobj
+1241 0 obj
<< /Length 8539
>>
stream
@@ -208739,7 +208843,7 @@ Q
endstream
endobj
-1240 0 obj
+1242 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -208747,14 +208851,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1239 0 R
+/Contents 1241 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-1241 0 obj
+1243 0 obj
<< /Length 6426
>>
stream
@@ -209207,7 +209311,7 @@ Q
endstream
endobj
-1242 0 obj
+1244 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -209215,7 +209319,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1241 0 R
+/Contents 1243 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F2.0 22 0 R
@@ -209224,10 +209328,10 @@ endobj
>>
>>
endobj
-1243 0 obj
-[1242 0 R /XYZ 0 301.575 null]
+1245 0 obj
+[1244 0 R /XYZ 0 301.575 null]
endobj
-1244 0 obj
+1246 0 obj
<< /Length 8972
>>
stream
@@ -209720,7 +209824,7 @@ Q
endstream
endobj
-1245 0 obj
+1247 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -209728,7 +209832,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1244 0 R
+/Contents 1246 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -209737,7 +209841,7 @@ endobj
>>
>>
endobj
-1246 0 obj
+1248 0 obj
<< /Length 9652
>>
stream
@@ -210339,7 +210443,7 @@ Q
endstream
endobj
-1247 0 obj
+1249 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -210347,7 +210451,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1246 0 R
+/Contents 1248 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -210357,13 +210461,13 @@ endobj
>>
>>
endobj
-1248 0 obj
-[1247 0 R /XYZ 0 342.919 null]
-endobj
-1249 0 obj
-[1247 0 R /XYZ 0 112.837 null]
-endobj
1250 0 obj
+[1249 0 R /XYZ 0 342.919 null]
+endobj
+1251 0 obj
+[1249 0 R /XYZ 0 112.837 null]
+endobj
+1252 0 obj
<< /Length 14481
>>
stream
@@ -211476,7 +211580,7 @@ Q
endstream
endobj
-1251 0 obj
+1253 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -211484,7 +211588,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1250 0 R
+/Contents 1252 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
@@ -211493,7 +211597,7 @@ endobj
>>
>>
endobj
-1252 0 obj
+1254 0 obj
<< /Length 14615
>>
stream
@@ -212637,7 +212741,7 @@ Q
endstream
endobj
-1253 0 obj
+1255 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -212645,20 +212749,20 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1252 0 R
+/Contents 1254 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F3.0 33 0 R
/F2.0 22 0 R
>>
>>
-/Annots [1255 0 R]
+/Annots [1257 0 R]
>>
endobj
-1254 0 obj
-[1253 0 R /XYZ 0 129.81 null]
+1256 0 obj
+[1255 0 R /XYZ 0 129.81 null]
endobj
-1255 0 obj
+1257 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -212669,7 +212773,7 @@ endobj
/Type /Annot
>>
endobj
-1256 0 obj
+1258 0 obj
<< /Length 10016
>>
stream
@@ -213250,7 +213354,7 @@ Q
endstream
endobj
-1257 0 obj
+1259 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -213258,7 +213362,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1256 0 R
+/Contents 1258 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -213266,13 +213370,13 @@ endobj
/F5.0 50 0 R
>>
>>
-/Annots [1259 0 R]
+/Annots [1261 0 R]
>>
endobj
-1258 0 obj
-[1257 0 R /XYZ 0 841.89 null]
+1260 0 obj
+[1259 0 R /XYZ 0 841.89 null]
endobj
-1259 0 obj
+1261 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -213283,7 +213387,7 @@ endobj
/Type /Annot
>>
endobj
-1260 0 obj
+1262 0 obj
<< /Length 8006
>>
stream
@@ -213785,7 +213889,7 @@ Q
endstream
endobj
-1261 0 obj
+1263 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -213793,7 +213897,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1260 0 R
+/Contents 1262 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -213801,13 +213905,13 @@ endobj
/F2.0 22 0 R
>>
>>
-/Annots [1263 0 R]
+/Annots [1265 0 R]
>>
endobj
-1262 0 obj
-[1261 0 R /XYZ 0 273.279 null]
+1264 0 obj
+[1263 0 R /XYZ 0 273.279 null]
endobj
-1263 0 obj
+1265 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -213818,7 +213922,7 @@ endobj
/Type /Annot
>>
endobj
-1264 0 obj
+1266 0 obj
<< /Length 10012
>>
stream
@@ -214460,7 +214564,7 @@ Q
endstream
endobj
-1265 0 obj
+1267 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -214468,7 +214572,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1264 0 R
+/Contents 1266 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -214477,7 +214581,7 @@ endobj
>>
>>
endobj
-1266 0 obj
+1268 0 obj
<< /Length 11670
>>
stream
@@ -215184,7 +215288,7 @@ Q
endstream
endobj
-1267 0 obj
+1269 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -215192,20 +215296,20 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1266 0 R
+/Contents 1268 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
/F1.0 8 0 R
/F2.0 22 0 R
>>
>>
-/Annots [1269 0 R 1270 0 R 1271 0 R]
+/Annots [1271 0 R 1272 0 R 1273 0 R]
>>
endobj
-1268 0 obj
-[1267 0 R /XYZ 0 501.37 null]
+1270 0 obj
+[1269 0 R /XYZ 0 501.37 null]
endobj
-1269 0 obj
+1271 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -215216,7 +215320,7 @@ endobj
/Type /Annot
>>
endobj
-1270 0 obj
+1272 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -215227,7 +215331,7 @@ endobj
/Type /Annot
>>
endobj
-1271 0 obj
+1273 0 obj
<< /Border [0 0 0]
/A << /Type /Action
/S /URI
@@ -215238,10 +215342,10 @@ endobj
/Type /Annot
>>
endobj
-1272 0 obj
-[1267 0 R /XYZ 0 288.95 null]
+1274 0 obj
+[1269 0 R /XYZ 0 288.95 null]
endobj
-1273 0 obj
+1275 0 obj
<< /Length 11551
>>
stream
@@ -216129,7 +216233,7 @@ Q
endstream
endobj
-1274 0 obj
+1276 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -216137,7 +216241,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1273 0 R
+/Contents 1275 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -216148,16 +216252,16 @@ endobj
>>
>>
endobj
-1275 0 obj
-[1274 0 R /XYZ 0 841.89 null]
-endobj
-1276 0 obj
-[1274 0 R /XYZ 0 686.79 null]
-endobj
1277 0 obj
-[1274 0 R /XYZ 0 603.15 null]
+[1276 0 R /XYZ 0 841.89 null]
endobj
1278 0 obj
+[1276 0 R /XYZ 0 686.79 null]
+endobj
+1279 0 obj
+[1276 0 R /XYZ 0 603.15 null]
+endobj
+1280 0 obj
<< /Length 9370
>>
stream
@@ -216735,7 +216839,7 @@ Q
endstream
endobj
-1279 0 obj
+1281 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -216743,7 +216847,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1278 0 R
+/Contents 1280 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -216751,7 +216855,7 @@ endobj
>>
>>
endobj
-1280 0 obj
+1282 0 obj
<< /Length 10558
>>
stream
@@ -217379,7 +217483,7 @@ Q
endstream
endobj
-1281 0 obj
+1283 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -217387,7 +217491,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1280 0 R
+/Contents 1282 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -217397,28 +217501,28 @@ endobj
>>
>>
endobj
-1282 0 obj
-[1281 0 R /XYZ 0 841.89 null]
-endobj
-1283 0 obj
-<< /Limits [(how-to-repo-structure) (how-to-workflow)]
-/Names [(how-to-repo-structure) 1163 0 R (how-to-see-registered-stubs) 1275 0 R (how-to-use-git-as-storage) 1208 0 R (how-to-use-pact-broker) 1229 0 R (how-to-use-pact-broker-pact) 1234 0 R (how-to-use-pact-broker-pact-consumers) 1248 0 R (how-to-use-pact-broker-pact-contract) 1238 0 R (how-to-use-pact-broker-pact-converter) 1237 0 R (how-to-use-pact-broker-pact-for-producers) 1243 0 R (how-to-use-stubs-from-a-location) 1294 0 R (how-to-use-the-failonnostubs-feature) 1300 0 R (how-to-work-with-transitivie) 1282 0 R (how-to-work-with-transitivie-exclude) 1286 0 R (how-to-work-with-transitivie-optional) 1284 0 R (how-to-work-with-transitivie-separate) 1285 0 R (how-to-workflow) 1175 0 R]
->>
-endobj
1284 0 obj
-[1281 0 R /XYZ 0 389.93 null]
+[1283 0 R /XYZ 0 841.89 null]
endobj
1285 0 obj
-[1281 0 R /XYZ 0 297.31 null]
+<< /Limits [(how-to-repo-structure) (how-to-workflow)]
+/Names [(how-to-repo-structure) 1165 0 R (how-to-see-registered-stubs) 1277 0 R (how-to-use-git-as-storage) 1210 0 R (how-to-use-pact-broker) 1231 0 R (how-to-use-pact-broker-pact) 1236 0 R (how-to-use-pact-broker-pact-consumers) 1250 0 R (how-to-use-pact-broker-pact-contract) 1240 0 R (how-to-use-pact-broker-pact-converter) 1239 0 R (how-to-use-pact-broker-pact-for-producers) 1245 0 R (how-to-use-stubs-from-a-location) 1296 0 R (how-to-use-the-failonnostubs-feature) 1302 0 R (how-to-work-with-transitivie) 1284 0 R (how-to-work-with-transitivie-exclude) 1288 0 R (how-to-work-with-transitivie-optional) 1286 0 R (how-to-work-with-transitivie-separate) 1287 0 R (how-to-workflow) 1177 0 R]
+>>
endobj
1286 0 obj
-[1281 0 R /XYZ 0 220.47 null]
+[1283 0 R /XYZ 0 389.93 null]
endobj
1287 0 obj
-[1281 0 R /XYZ 0 143.63 null]
+[1283 0 R /XYZ 0 297.31 null]
endobj
1288 0 obj
-<< /Length 10457
+[1283 0 R /XYZ 0 220.47 null]
+endobj
+1289 0 obj
+[1283 0 R /XYZ 0 143.63 null]
+endobj
+1290 0 obj
+<< /Length 10336
>>
stream
q
@@ -217755,10 +217859,10 @@ q
52.24 397.918 m
543.04 397.918 l
545.2491 397.918 547.04 396.1271 547.04 393.918 c
-547.04 -1063.178 l
-547.04 -1065.3871 545.2491 -1067.178 543.04 -1067.178 c
-52.24 -1067.178 l
-50.0309 -1067.178 48.24 -1065.3871 48.24 -1063.178 c
+547.04 -1077.918 l
+547.04 -1080.1271 545.2491 -1081.918 543.04 -1081.918 c
+52.24 -1081.918 l
+50.0309 -1081.918 48.24 -1080.1271 48.24 -1077.918 c
48.24 393.918 l
48.24 396.1271 50.0309 397.918 52.24 397.918 c
h
@@ -217768,10 +217872,10 @@ f
52.24 397.918 m
543.04 397.918 l
545.2491 397.918 547.04 396.1271 547.04 393.918 c
-547.04 -1063.178 l
-547.04 -1065.3871 545.2491 -1067.178 543.04 -1067.178 c
-52.24 -1067.178 l
-50.0309 -1067.178 48.24 -1065.3871 48.24 -1063.178 c
+547.04 -1077.918 l
+547.04 -1080.1271 545.2491 -1081.918 543.04 -1081.918 c
+52.24 -1081.918 l
+50.0309 -1081.918 48.24 -1080.1271 48.24 -1077.918 c
48.24 393.918 l
48.24 396.1271 50.0309 397.918 52.24 397.918 c
h
@@ -217893,7 +217997,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 226.182 Td
+71.24 211.442 Td
/F3.0 11 Tf
<696d706f7274206f72672e737072696e676672616d65776f726b2e6265616e732e666163746f72792e616e6e6f746174696f6e2e4175746f77697265643b> Tj
ET
@@ -217904,7 +218008,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 211.442 Td
+71.24 196.702 Td
/F3.0 11 Tf
<696d706f7274206f72672e737072696e676672616d65776f726b2e626f6f742e746573742e636f6e746578742e537072696e67426f6f74546573743b> Tj
ET
@@ -217915,7 +218019,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 196.702 Td
+71.24 181.962 Td
/F3.0 11 Tf
<696d706f7274206f72672e737072696e676672616d65776f726b2e72657374646f63732e4a556e697452657374446f63756d656e746174696f6e3b> Tj
ET
@@ -217926,7 +218030,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 181.962 Td
+71.24 167.222 Td
/F3.0 11 Tf
<696d706f7274206f72672e737072696e676672616d65776f726b2e746573742e636f6e746578742e6a756e6974342e537072696e6752756e6e65723b> Tj
ET
@@ -217937,7 +218041,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 167.222 Td
+71.24 152.482 Td
/F3.0 11 Tf
<696d706f7274206f72672e737072696e676672616d65776f726b2e746573742e7765622e736572766c65742e73657475702e4d6f636b4d76634275696c646572733b> Tj
ET
@@ -217948,7 +218052,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 152.482 Td
+71.24 137.742 Td
/F3.0 11 Tf
<696d706f7274206f72672e737072696e676672616d65776f726b2e7765622e636f6e746578742e5765624170706c69636174696f6e436f6e746578743b> Tj
ET
@@ -217958,21 +218062,10 @@ ET
0.2 0.2 0.2 scn
0.2 0.2 0.2 SCN
-BT
-71.24 123.002 Td
-/F3.0 11 Tf
-<696d706f727420737461746963> Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
BT
71.24 108.262 Td
/F3.0 11 Tf
-<6f72672e737072696e676672616d65776f726b2e72657374646f63732e6d6f636b6d76632e4d6f636b4d766352657374446f63756d656e746174696f6e2e646f63756d656e743b> Tj
+<696d706f727420737461746963> Tj
ET
0.0 0.0 0.0 SCN
@@ -217983,7 +218076,7 @@ ET
BT
71.24 93.522 Td
/F3.0 11 Tf
-<696d706f727420737461746963> Tj
+<6f72672e737072696e676672616d65776f726b2e72657374646f63732e6d6f636b6d76632e4d6f636b4d766352657374446f63756d656e746174696f6e2e646f63756d656e743b> Tj
ET
0.0 0.0 0.0 SCN
@@ -217994,7 +218087,7 @@ ET
BT
71.24 78.782 Td
/F3.0 11 Tf
-<6f72672e737072696e676672616d65776f726b2e72657374646f63732e6d6f636b6d76632e4d6f636b4d766352657374446f63756d656e746174696f6e2e646f63756d656e746174696f6e436f6e66696775> Tj
+<696d706f727420737461746963> Tj
ET
0.0 0.0 0.0 SCN
@@ -218005,7 +218098,7 @@ ET
BT
71.24 64.042 Td
/F3.0 11 Tf
-<726174696f6e3b> Tj
+<6f72672e737072696e676672616d65776f726b2e72657374646f63732e6d6f636b6d76632e4d6f636b4d766352657374446f63756d656e746174696f6e2e646f63756d656e746174696f6e436f6e66696775> Tj
ET
0.0 0.0 0.0 SCN
@@ -218014,7 +218107,7 @@ Q
endstream
endobj
-1289 0 obj
+1291 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -218022,7 +218115,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1288 0 R
+/Contents 1290 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F5.0 50 0 R
@@ -218031,8 +218124,8 @@ endobj
>>
>>
endobj
-1290 0 obj
-<< /Length 5115
+1292 0 obj
+<< /Length 5235
>>
stream
q
@@ -218042,10 +218135,10 @@ q
64.24 805.89 m
531.04 805.89 l
533.2491 805.89 535.04 804.0991 535.04 801.89 c
-535.04 322.323 l
-535.04 320.1139 533.2491 318.323 531.04 318.323 c
-64.24 318.323 l
-62.0309 318.323 60.24 320.1139 60.24 322.323 c
+535.04 307.583 l
+535.04 305.3739 533.2491 303.583 531.04 303.583 c
+64.24 303.583 l
+62.0309 303.583 60.24 305.3739 60.24 307.583 c
60.24 801.89 l
60.24 804.0991 62.0309 805.89 64.24 805.89 c
h
@@ -218056,10 +218149,10 @@ f
64.24 805.89 m
531.04 805.89 l
533.2491 805.89 535.04 804.0991 535.04 801.89 c
-535.04 322.323 l
-535.04 320.1139 533.2491 318.323 531.04 318.323 c
-64.24 318.323 l
-62.0309 318.323 60.24 320.1139 60.24 322.323 c
+535.04 307.583 l
+535.04 305.3739 533.2491 303.583 531.04 303.583 c
+64.24 303.583 l
+62.0309 303.583 60.24 305.3739 60.24 307.583 c
60.24 801.89 l
60.24 804.0991 62.0309 805.89 64.24 805.89 c
h
@@ -218080,9 +218173,9 @@ Q
0.2 0.2 0.2 SCN
BT
-71.24 781.69 Td
+71.24 796.43 Td
/F3.0 11 Tf
-<4052756e5769746828537072696e6752756e6e65722e636c61737329> Tj
+<726174696f6e3b> Tj
ET
0.0 0.0 0.0 SCN
@@ -218093,7 +218186,7 @@ ET
BT
71.24 766.95 Td
/F3.0 11 Tf
-<40537072696e67426f6f745465737428636c6173736573203d204170706c69636174696f6e2e636c61737329> Tj
+<4052756e5769746828537072696e6752756e6e65722e636c61737329> Tj
ET
0.0 0.0 0.0 SCN
@@ -218104,6 +218197,17 @@ ET
BT
71.24 752.21 Td
/F3.0 11 Tf
+<40537072696e67426f6f745465737428636c6173736573203d204170706c69636174696f6e2e636c61737329> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 737.47 Td
+/F3.0 11 Tf
<7075626c696320616273747261637420636c61737320467261756442617365576974685765624170705365747570207b> Tj
ET
@@ -218113,7 +218217,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 722.73 Td
+71.24 707.99 Td
/F3.0 11 Tf
Tj
ET
@@ -218123,21 +218227,10 @@ ET
0.2 0.2 0.2 scn
0.2 0.2 0.2 SCN
-BT
-71.24 693.25 Td
-/F3.0 11 Tf
- Tj
-ET
-
-0.0 0.0 0.0 SCN
-0.0 0.0 0.0 scn
-0.2 0.2 0.2 scn
-0.2 0.2 0.2 SCN
-
BT
71.24 678.51 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218148,7 +218241,7 @@ ET
BT
71.24 663.77 Td
/F3.0 11 Tf
-<4a556e697452657374446f63756d656e746174696f6e284f5554505554293b> Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218157,9 +218250,9 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 634.29 Td
+71.24 649.03 Td
/F3.0 11 Tf
- Tj
+<4a556e697452657374446f63756d656e746174696f6e284f5554505554293b> Tj
ET
0.0 0.0 0.0 SCN
@@ -218170,7 +218263,7 @@ ET
BT
71.24 619.55 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218179,9 +218272,9 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 590.07 Td
+71.24 604.81 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218192,7 +218285,7 @@ ET
BT
71.24 575.33 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218201,9 +218294,9 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 545.85 Td
+71.24 560.59 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218214,7 +218307,7 @@ ET
BT
71.24 531.11 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218225,7 +218318,7 @@ ET
BT
71.24 516.37 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218236,7 +218329,7 @@ ET
BT
71.24 501.63 Td
/F3.0 11 Tf
-<52657374417373757265644d6f636b4d76632e6d6f636b4d7663284d6f636b4d76634275696c646572732e776562417070436f6e74657874536574757028746869732e636f6e7465787429> Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218247,7 +218340,7 @@ ET
BT
71.24 486.89 Td
/F3.0 11 Tf
- Tj
+<52657374417373757265644d6f636b4d76632e6d6f636b4d7663284d6f636b4d76634275696c646572732e776562417070436f6e74657874536574757028746869732e636f6e7465787429> Tj
ET
0.0 0.0 0.0 SCN
@@ -218258,7 +218351,7 @@ ET
BT
71.24 472.15 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218269,7 +218362,7 @@ ET
BT
71.24 457.41 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218280,7 +218373,7 @@ ET
BT
71.24 442.67 Td
/F3.0 11 Tf
-<746573744e616d652e6765744d6574686f644e616d6528292929> Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218291,7 +218384,7 @@ ET
BT
71.24 427.93 Td
/F3.0 11 Tf
- Tj
+<746573744e616d652e6765744d6574686f644e616d6528292929> Tj
ET
0.0 0.0 0.0 SCN
@@ -218302,7 +218395,7 @@ ET
BT
71.24 413.19 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218311,9 +218404,9 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 383.71 Td
+71.24 398.45 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218324,7 +218417,7 @@ ET
BT
71.24 368.97 Td
/F3.0 11 Tf
- Tj
+ Tj
ET
0.0 0.0 0.0 SCN
@@ -218335,6 +218428,17 @@ ET
BT
71.24 354.23 Td
/F3.0 11 Tf
+ Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+71.24 339.49 Td
+/F3.0 11 Tf
Tj
ET
@@ -218344,7 +218448,7 @@ ET
0.2 0.2 0.2 SCN
BT
-71.24 324.75 Td
+71.24 310.01 Td
/F3.0 11 Tf
<7d> Tj
ET
@@ -218355,7 +218459,7 @@ Q
endstream
endobj
-1291 0 obj
+1293 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -218363,14 +218467,14 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1290 0 R
+/Contents 1292 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F3.0 33 0 R
>>
>>
>>
endobj
-1292 0 obj
+1294 0 obj
<< /Length 7920
>>
stream
@@ -218853,7 +218957,7 @@ Q
endstream
endobj
-1293 0 obj
+1295 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -218861,7 +218965,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1292 0 R
+/Contents 1294 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F5.0 50 0 R
/F3.0 33 0 R
@@ -218872,10 +218976,10 @@ endobj
>>
>>
endobj
-1294 0 obj
-[1293 0 R /XYZ 0 129.219 null]
+1296 0 obj
+[1295 0 R /XYZ 0 129.219 null]
endobj
-1295 0 obj
+1297 0 obj
<< /Length 15480
>>
stream
@@ -219968,7 +220072,7 @@ Q
endstream
endobj
-1296 0 obj
+1298 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -219976,7 +220080,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1295 0 R
+/Contents 1297 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F1.0 8 0 R
/F2.0 22 0 R
@@ -219984,10 +220088,10 @@ endobj
/F4.1 46 0 R
>>
>>
-/Annots [1297 0 R 1299 0 R 1301 0 R 1303 0 R]
+/Annots [1299 0 R 1301 0 R 1303 0 R 1305 0 R]
>>
endobj
-1297 0 obj
+1299 0 obj
<< /Border [0 0 0]
/Dest (features-stub-runner-stubs-protocol)
/Subtype /Link
@@ -219995,10 +220099,10 @@ endobj
/Type /Annot
>>
endobj
-1298 0 obj
-[1296 0 R /XYZ 0 763.08 null]
+1300 0 obj
+[1298 0 R /XYZ 0 763.08 null]
endobj
-1299 0 obj
+1301 0 obj
<< /Border [0 0 0]
/Dest (features-stub-runner-generate-stubs-at-runtime)
/Subtype /Link
@@ -220006,10 +220110,10 @@ endobj
/Type /Annot
>>
endobj
-1300 0 obj
-[1296 0 R /XYZ 0 663.66 null]
+1302 0 obj
+[1298 0 R /XYZ 0 663.66 null]
endobj
-1301 0 obj
+1303 0 obj
<< /Border [0 0 0]
/Dest (features-stub-runner-fail-on-no-stubs)
/Subtype /Link
@@ -220017,10 +220121,10 @@ endobj
/Type /Annot
>>
endobj
-1302 0 obj
-[1296 0 R /XYZ 0 480.42 null]
+1304 0 obj
+[1298 0 R /XYZ 0 480.42 null]
endobj
-1303 0 obj
+1305 0 obj
<< /Border [0 0 0]
/Dest (contract-dsl-in-progress)
/Subtype /Link
@@ -220028,13 +220132,13 @@ endobj
/Type /Annot
>>
endobj
-1304 0 obj
-[1296 0 R /XYZ 0 321.66 null]
-endobj
-1305 0 obj
-[1296 0 R /XYZ 0 154.9 null]
-endobj
1306 0 obj
+[1298 0 R /XYZ 0 321.66 null]
+endobj
+1307 0 obj
+[1298 0 R /XYZ 0 154.9 null]
+endobj
+1308 0 obj
<< /Length 22219
>>
stream
@@ -221783,7 +221887,7 @@ Q
endstream
endobj
-1307 0 obj
+1309 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -221791,7 +221895,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1306 0 R
+/Contents 1308 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -221799,7 +221903,7 @@ endobj
>>
>>
endobj
-1308 0 obj
+1310 0 obj
<< /Length 20913
>>
stream
@@ -223435,7 +223539,7 @@ Q
endstream
endobj
-1309 0 obj
+1311 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -223443,7 +223547,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1308 0 R
+/Contents 1310 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -223452,7 +223556,7 @@ endobj
>>
>>
endobj
-1310 0 obj
+1312 0 obj
<< /Length 27143
>>
stream
@@ -225594,7 +225698,7 @@ Q
endstream
endobj
-1311 0 obj
+1313 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -225602,7 +225706,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1310 0 R
+/Contents 1312 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F2.0 22 0 R
/F1.0 8 0 R
@@ -225610,10 +225714,10 @@ endobj
>>
>>
endobj
-1312 0 obj
-[1311 0 R /XYZ 0 146.87 null]
+1314 0 obj
+[1313 0 R /XYZ 0 146.87 null]
endobj
-1313 0 obj
+1315 0 obj
<< /Length 19624
>>
stream
@@ -227111,7 +227215,7 @@ Q
endstream
endobj
-1314 0 obj
+1316 0 obj
<< /Type /Page
/Parent 3 0 R
/MediaBox [0 0 595.28 841.89]
@@ -227119,7 +227223,7 @@ endobj
/BleedBox [0 0 595.28 841.89]
/TrimBox [0 0 595.28 841.89]
/ArtBox [0 0 595.28 841.89]
-/Contents 1313 0 R
+/Contents 1315 0 R
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
/Font << /F4.1 46 0 R
/F1.0 8 0 R
@@ -227130,7 +227234,7 @@ endobj
>>
>>
endobj
-1315 0 obj
+1317 0 obj
<< /Border [0 0 0]
/Dest (legal)
/Subtype /Link
@@ -227138,7 +227242,7 @@ endobj
/Type /Annot
>>
endobj
-1316 0 obj
+1318 0 obj
<< /Border [0 0 0]
/Dest (legal)
/Subtype /Link
@@ -227146,7 +227250,7 @@ endobj
/Type /Annot
>>
endobj
-1317 0 obj
+1319 0 obj
<< /Border [0 0 0]
/Dest (getting-started)
/Subtype /Link
@@ -227154,7 +227258,7 @@ endobj
/Type /Annot
>>
endobj
-1318 0 obj
+1320 0 obj
<< /Border [0 0 0]
/Dest (getting-started)
/Subtype /Link
@@ -227162,7 +227266,7 @@ endobj
/Type /Annot
>>
endobj
-1319 0 obj
+1321 0 obj
<< /Border [0 0 0]
/Dest (getting-started-introducing-spring-cloud-contract)
/Subtype /Link
@@ -227170,7 +227274,7 @@ endobj
/Type /Annot
>>
endobj
-1320 0 obj
+1322 0 obj
<< /Border [0 0 0]
/Dest (getting-started-introducing-spring-cloud-contract)
/Subtype /Link
@@ -227178,7 +227282,7 @@ endobj
/Type /Annot
>>
endobj
-1321 0 obj
+1323 0 obj
<< /Border [0 0 0]
/Dest (getting-started-three-second-tour)
/Subtype /Link
@@ -227186,7 +227290,7 @@ endobj
/Type /Annot
>>
endobj
-1322 0 obj
+1324 0 obj
<< /Border [0 0 0]
/Dest (getting-started-three-second-tour)
/Subtype /Link
@@ -227194,7 +227298,7 @@ endobj
/Type /Annot
>>
endobj
-1323 0 obj
+1325 0 obj
<< /Border [0 0 0]
/Dest (getting-started-first-application)
/Subtype /Link
@@ -227202,7 +227306,7 @@ endobj
/Type /Annot
>>
endobj
-1324 0 obj
+1326 0 obj
<< /Border [0 0 0]
/Dest (getting-started-first-application)
/Subtype /Link
@@ -227210,7 +227314,7 @@ endobj
/Type /Annot
>>
endobj
-1325 0 obj
+1327 0 obj
<< /Border [0 0 0]
/Dest (getting-started-cdc)
/Subtype /Link
@@ -227218,7 +227322,7 @@ endobj
/Type /Annot
>>
endobj
-1326 0 obj
+1328 0 obj
<< /Border [0 0 0]
/Dest (getting-started-cdc)
/Subtype /Link
@@ -227226,7 +227330,7 @@ endobj
/Type /Annot
>>
endobj
-1327 0 obj
+1329 0 obj
<< /Border [0 0 0]
/Dest (getting-started-cdc)
/Subtype /Link
@@ -227234,7 +227338,7 @@ endobj
/Type /Annot
>>
endobj
-1328 0 obj
+1330 0 obj
<< /Border [0 0 0]
/Dest (getting-started-whats-next)
/Subtype /Link
@@ -227242,7 +227346,7 @@ endobj
/Type /Annot
>>
endobj
-1329 0 obj
+1331 0 obj
<< /Border [0 0 0]
/Dest (getting-started-whats-next)
/Subtype /Link
@@ -227250,7 +227354,7 @@ endobj
/Type /Annot
>>
endobj
-1330 0 obj
+1332 0 obj
<< /Border [0 0 0]
/Dest (using)
/Subtype /Link
@@ -227258,7 +227362,7 @@ endobj
/Type /Annot
>>
endobj
-1331 0 obj
+1333 0 obj
<< /Border [0 0 0]
/Dest (using)
/Subtype /Link
@@ -227266,7 +227370,7 @@ endobj
/Type /Annot
>>
endobj
-1332 0 obj
+1334 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-nexus)
/Subtype /Link
@@ -227274,7 +227378,7 @@ endobj
/Type /Annot
>>
endobj
-1333 0 obj
+1335 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-nexus)
/Subtype /Link
@@ -227282,7 +227386,7 @@ endobj
/Type /Annot
>>
endobj
-1334 0 obj
+1336 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-git)
/Subtype /Link
@@ -227290,7 +227394,7 @@ endobj
/Type /Annot
>>
endobj
-1335 0 obj
+1337 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-git)
/Subtype /Link
@@ -227298,7 +227402,7 @@ endobj
/Type /Annot
>>
endobj
-1336 0 obj
+1338 0 obj
<< /Border [0 0 0]
/Dest (flows-cdc-contracts-producer)
/Subtype /Link
@@ -227306,7 +227410,7 @@ endobj
/Type /Annot
>>
endobj
-1337 0 obj
+1339 0 obj
<< /Border [0 0 0]
/Dest (flows-cdc-contracts-producer)
/Subtype /Link
@@ -227314,7 +227418,7 @@ endobj
/Type /Annot
>>
endobj
-1338 0 obj
+1340 0 obj
<< /Border [0 0 0]
/Dest (flows-cdc-contracts-external)
/Subtype /Link
@@ -227322,7 +227426,7 @@ endobj
/Type /Annot
>>
endobj
-1339 0 obj
+1341 0 obj
<< /Border [0 0 0]
/Dest (flows-cdc-contracts-external)
/Subtype /Link
@@ -227330,7 +227434,7 @@ endobj
/Type /Annot
>>
endobj
-1340 0 obj
+1342 0 obj
<< /Border [0 0 0]
/Dest (flows-cdc-contracts-stubs-git)
/Subtype /Link
@@ -227338,7 +227442,7 @@ endobj
/Type /Annot
>>
endobj
-1341 0 obj
+1343 0 obj
<< /Border [0 0 0]
/Dest (flows-cdc-contracts-stubs-git)
/Subtype /Link
@@ -227346,7 +227450,7 @@ endobj
/Type /Annot
>>
endobj
-1342 0 obj
+1344 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-non-spring)
/Subtype /Link
@@ -227354,7 +227458,7 @@ endobj
/Type /Annot
>>
endobj
-1343 0 obj
+1345 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-non-spring)
/Subtype /Link
@@ -227362,7 +227466,7 @@ endobj
/Type /Annot
>>
endobj
-1344 0 obj
+1346 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-non-jvm)
/Subtype /Link
@@ -227370,7 +227474,7 @@ endobj
/Type /Annot
>>
endobj
-1345 0 obj
+1347 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-non-jvm)
/Subtype /Link
@@ -227378,7 +227482,7 @@ endobj
/Type /Annot
>>
endobj
-1346 0 obj
+1348 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-rest-docs)
/Subtype /Link
@@ -227386,7 +227490,7 @@ endobj
/Type /Annot
>>
endobj
-1347 0 obj
+1349 0 obj
<< /Border [0 0 0]
/Dest (flows-provider-rest-docs)
/Subtype /Link
@@ -227394,7 +227498,7 @@ endobj
/Type /Annot
>>
endobj
-1348 0 obj
+1350 0 obj
<< /Border [0 0 0]
/Dest (using-whats-next)
/Subtype /Link
@@ -227402,7 +227506,7 @@ endobj
/Type /Annot
>>
endobj
-1349 0 obj
+1351 0 obj
<< /Border [0 0 0]
/Dest (using-whats-next)
/Subtype /Link
@@ -227410,7 +227514,7 @@ endobj
/Type /Annot
>>
endobj
-1350 0 obj
+1352 0 obj
<< /Border [0 0 0]
/Dest (features)
/Subtype /Link
@@ -227418,7 +227522,7 @@ endobj
/Type /Annot
>>
endobj
-1351 0 obj
+1353 0 obj
<< /Border [0 0 0]
/Dest (features)
/Subtype /Link
@@ -227426,7 +227530,7 @@ endobj
/Type /Annot
>>
endobj
-1352 0 obj
+1354 0 obj
<< /Border [0 0 0]
/Dest (contract-dsl)
/Subtype /Link
@@ -227434,7 +227538,7 @@ endobj
/Type /Annot
>>
endobj
-1353 0 obj
+1355 0 obj
<< /Border [0 0 0]
/Dest (contract-dsl)
/Subtype /Link
@@ -227442,7 +227546,7 @@ endobj
/Type /Annot
>>
endobj
-1354 0 obj
+1356 0 obj
<< /Border [0 0 0]
/Dest (features-http)
/Subtype /Link
@@ -227450,7 +227554,7 @@ endobj
/Type /Annot
>>
endobj
-1355 0 obj
+1357 0 obj
<< /Border [0 0 0]
/Dest (features-http)
/Subtype /Link
@@ -227458,7 +227562,7 @@ endobj
/Type /Annot
>>
endobj
-1356 0 obj
+1358 0 obj
<< /Border [0 0 0]
/Dest (feature-integrations)
/Subtype /Link
@@ -227466,7 +227570,7 @@ endobj
/Type /Annot
>>
endobj
-1357 0 obj
+1359 0 obj
<< /Border [0 0 0]
/Dest (feature-integrations)
/Subtype /Link
@@ -227474,7 +227578,7 @@ endobj
/Type /Annot
>>
endobj
-1358 0 obj
+1360 0 obj
<< /Border [0 0 0]
/Dest (features-messaging)
/Subtype /Link
@@ -227482,7 +227586,7 @@ endobj
/Type /Annot
>>
endobj
-1359 0 obj
+1361 0 obj
<< /Border [0 0 0]
/Dest (features-messaging)
/Subtype /Link
@@ -227490,7 +227594,7 @@ endobj
/Type /Annot
>>
endobj
-1360 0 obj
+1362 0 obj
<< /Border [0 0 0]
/Dest (features-stub-runner)
/Subtype /Link
@@ -227498,7 +227602,7 @@ endobj
/Type /Annot
>>
endobj
-1361 0 obj
+1363 0 obj
<< /Border [0 0 0]
/Dest (features-stub-runner)
/Subtype /Link
@@ -227506,7 +227610,7 @@ endobj
/Type /Annot
>>
endobj
-1362 0 obj
+1364 0 obj
<< /Border [0 0 0]
/Dest (features-wiremock)
/Subtype /Link
@@ -227514,7 +227618,7 @@ endobj
/Type /Annot
>>
endobj
-1363 0 obj
+1365 0 obj
<< /Border [0 0 0]
/Dest (features-wiremock)
/Subtype /Link
@@ -227522,7 +227626,7 @@ endobj
/Type /Annot
>>
endobj
-1364 0 obj
+1366 0 obj
<< /Border [0 0 0]
/Dest (features-build-tools)
/Subtype /Link
@@ -227530,7 +227634,7 @@ endobj
/Type /Annot
>>
endobj
-1365 0 obj
+1367 0 obj
<< /Border [0 0 0]
/Dest (features-build-tools)
/Subtype /Link
@@ -227538,7 +227642,7 @@ endobj
/Type /Annot
>>
endobj
-1366 0 obj
+1368 0 obj
<< /Border [0 0 0]
/Dest (features-whats-next)
/Subtype /Link
@@ -227546,7 +227650,7 @@ endobj
/Type /Annot
>>
endobj
-1367 0 obj
+1369 0 obj
<< /Border [0 0 0]
/Dest (features-whats-next)
/Subtype /Link
@@ -227554,7 +227658,7 @@ endobj
/Type /Annot
>>
endobj
-1368 0 obj
+1370 0 obj
<< /Border [0 0 0]
/Dest (maven-project)
/Subtype /Link
@@ -227562,7 +227666,7 @@ endobj
/Type /Annot
>>
endobj
-1369 0 obj
+1371 0 obj
<< /Border [0 0 0]
/Dest (maven-project)
/Subtype /Link
@@ -227570,7 +227674,7 @@ endobj
/Type /Annot
>>
endobj
-1370 0 obj
+1372 0 obj
<< /Border [0 0 0]
/Dest (maven-add-plugin)
/Subtype /Link
@@ -227578,7 +227682,7 @@ endobj
/Type /Annot
>>
endobj
-1371 0 obj
+1373 0 obj
<< /Border [0 0 0]
/Dest (maven-add-plugin)
/Subtype /Link
@@ -227586,7 +227690,7 @@ endobj
/Type /Annot
>>
endobj
-1372 0 obj
+1374 0 obj
<< /Border [0 0 0]
/Dest (maven-rest-assured)
/Subtype /Link
@@ -227594,7 +227698,7 @@ endobj
/Type /Annot
>>
endobj
-1373 0 obj
+1375 0 obj
<< /Border [0 0 0]
/Dest (maven-rest-assured)
/Subtype /Link
@@ -227602,7 +227706,7 @@ endobj
/Type /Annot
>>
endobj
-1374 0 obj
+1376 0 obj
<< /Border [0 0 0]
/Dest (maven-snapshot-versions)
/Subtype /Link
@@ -227610,7 +227714,7 @@ endobj
/Type /Annot
>>
endobj
-1375 0 obj
+1377 0 obj
<< /Border [0 0 0]
/Dest (maven-snapshot-versions)
/Subtype /Link
@@ -227618,7 +227722,7 @@ endobj
/Type /Annot
>>
endobj
-1376 0 obj
+1378 0 obj
<< /Border [0 0 0]
/Dest (maven-add-stubs)
/Subtype /Link
@@ -227626,7 +227730,7 @@ endobj
/Type /Annot
>>
endobj
-1377 0 obj
+1379 0 obj
<< /Border [0 0 0]
/Dest (maven-add-stubs)
/Subtype /Link
@@ -227634,7 +227738,7 @@ endobj
/Type /Annot
>>
endobj
-1378 0 obj
+1380 0 obj
<< /Border [0 0 0]
/Dest (maven-run-plugin)
/Subtype /Link
@@ -227642,7 +227746,7 @@ endobj
/Type /Annot
>>
endobj
-1379 0 obj
+1381 0 obj
<< /Border [0 0 0]
/Dest (maven-run-plugin)
/Subtype /Link
@@ -227650,7 +227754,7 @@ endobj
/Type /Annot
>>
endobj
-1380 0 obj
+1382 0 obj
<< /Border [0 0 0]
/Dest (maven-configure-plugin)
/Subtype /Link
@@ -227658,7 +227762,7 @@ endobj
/Type /Annot
>>
endobj
-1381 0 obj
+1383 0 obj
<< /Border [0 0 0]
/Dest (maven-configure-plugin)
/Subtype /Link
@@ -227666,7 +227770,7 @@ endobj
/Type /Annot
>>
endobj
-1382 0 obj
+1384 0 obj
<< /Border [0 0 0]
/Dest (maven-configuration-options)
/Subtype /Link
@@ -227674,7 +227778,7 @@ endobj
/Type /Annot
>>
endobj
-1383 0 obj
+1385 0 obj
<< /Border [0 0 0]
/Dest (maven-configuration-options)
/Subtype /Link
@@ -227682,7 +227786,7 @@ endobj
/Type /Annot
>>
endobj
-1384 0 obj
+1386 0 obj
<< /Border [0 0 0]
/Dest (maven-single-base)
/Subtype /Link
@@ -227690,7 +227794,7 @@ endobj
/Type /Annot
>>
endobj
-1385 0 obj
+1387 0 obj
<< /Border [0 0 0]
/Dest (maven-single-base)
/Subtype /Link
@@ -227698,7 +227802,7 @@ endobj
/Type /Annot
>>
endobj
-1386 0 obj
+1388 0 obj
<< /Border [0 0 0]
/Dest (maven-different-base)
/Subtype /Link
@@ -227706,7 +227810,7 @@ endobj
/Type /Annot
>>
endobj
-1387 0 obj
+1389 0 obj
<< /Border [0 0 0]
/Dest (maven-different-base)
/Subtype /Link
@@ -227714,7 +227818,7 @@ endobj
/Type /Annot
>>
endobj
-1388 0 obj
+1390 0 obj
<< /Border [0 0 0]
/Dest (maven-invoking-generated-tests)
/Subtype /Link
@@ -227722,7 +227826,7 @@ endobj
/Type /Annot
>>
endobj
-1389 0 obj
+1391 0 obj
<< /Border [0 0 0]
/Dest (maven-invoking-generated-tests)
/Subtype /Link
@@ -227730,7 +227834,7 @@ endobj
/Type /Annot
>>
endobj
-1390 0 obj
+1392 0 obj
<< /Border [0 0 0]
/Dest (maven-pushing-stubs-to-scm)
/Subtype /Link
@@ -227738,7 +227842,7 @@ endobj
/Type /Annot
>>
endobj
-1391 0 obj
+1393 0 obj
<< /Border [0 0 0]
/Dest (maven-pushing-stubs-to-scm)
/Subtype /Link
@@ -227746,7 +227850,7 @@ endobj
/Type /Annot
>>
endobj
-1392 0 obj
+1394 0 obj
<< /Border [0 0 0]
/Dest (maven-sts)
/Subtype /Link
@@ -227754,7 +227858,7 @@ endobj
/Type /Annot
>>
endobj
-1393 0 obj
+1395 0 obj
<< /Border [0 0 0]
/Dest (maven-sts)
/Subtype /Link
@@ -227762,7 +227866,7 @@ endobj
/Type /Annot
>>
endobj
-1394 0 obj
+1396 0 obj
<< /Border [0 0 0]
/Dest (maven-plugin-with-spock-tests)
/Subtype /Link
@@ -227770,7 +227874,7 @@ endobj
/Type /Annot
>>
endobj
-1395 0 obj
+1397 0 obj
<< /Border [0 0 0]
/Dest (maven-plugin-with-spock-tests)
/Subtype /Link
@@ -227778,7 +227882,7 @@ endobj
/Type /Annot
>>
endobj
-1396 0 obj
+1398 0 obj
<< /Border [0 0 0]
/Dest (gradle-project)
/Subtype /Link
@@ -227786,7 +227890,7 @@ endobj
/Type /Annot
>>
endobj
-1397 0 obj
+1399 0 obj
<< /Border [0 0 0]
/Dest (gradle-project)
/Subtype /Link
@@ -227794,7 +227898,7 @@ endobj
/Type /Annot
>>
endobj
-1398 0 obj
+1400 0 obj
<< /Border [0 0 0]
/Dest (gradle-prerequisites)
/Subtype /Link
@@ -227802,7 +227906,7 @@ endobj
/Type /Annot
>>
endobj
-1399 0 obj
+1401 0 obj
<< /Border [0 0 0]
/Dest (gradle-prerequisites)
/Subtype /Link
@@ -227810,7 +227914,7 @@ endobj
/Type /Annot
>>
endobj
-1400 0 obj
+1402 0 obj
<< /Border [0 0 0]
/Dest (gradle-add-gradle-plugin)
/Subtype /Link
@@ -227818,7 +227922,7 @@ endobj
/Type /Annot
>>
endobj
-1401 0 obj
+1403 0 obj
<< /Border [0 0 0]
/Dest (gradle-add-gradle-plugin)
/Subtype /Link
@@ -227826,7 +227930,7 @@ endobj
/Type /Annot
>>
endobj
-1402 0 obj
+1404 0 obj
<< /Border [0 0 0]
/Dest (gradle-and-rest-assured)
/Subtype /Link
@@ -227834,7 +227938,7 @@ endobj
/Type /Annot
>>
endobj
-1403 0 obj
+1405 0 obj
<< /Border [0 0 0]
/Dest (gradle-and-rest-assured)
/Subtype /Link
@@ -227842,7 +227946,7 @@ endobj
/Type /Annot
>>
endobj
-1404 0 obj
+1406 0 obj
<< /Border [0 0 0]
/Dest (gradle-snapshot-versions)
/Subtype /Link
@@ -227850,7 +227954,7 @@ endobj
/Type /Annot
>>
endobj
-1405 0 obj
+1407 0 obj
<< /Border [0 0 0]
/Dest (gradle-snapshot-versions)
/Subtype /Link
@@ -227858,7 +227962,7 @@ endobj
/Type /Annot
>>
endobj
-1406 0 obj
+1408 0 obj
<< /Border [0 0 0]
/Dest (gradle-add-stubs)
/Subtype /Link
@@ -227866,7 +227970,7 @@ endobj
/Type /Annot
>>
endobj
-1407 0 obj
+1409 0 obj
<< /Border [0 0 0]
/Dest (gradle-add-stubs)
/Subtype /Link
@@ -227874,7 +227978,7 @@ endobj
/Type /Annot
>>
endobj
-1408 0 obj
+1410 0 obj
<< /Border [0 0 0]
/Dest (gradle-run-plugin)
/Subtype /Link
@@ -227882,7 +227986,7 @@ endobj
/Type /Annot
>>
endobj
-1409 0 obj
+1411 0 obj
<< /Border [0 0 0]
/Dest (gradle-run-plugin)
/Subtype /Link
@@ -227890,7 +227994,7 @@ endobj
/Type /Annot
>>
endobj
-1410 0 obj
+1412 0 obj
<< /Border [0 0 0]
/Dest (gradle-default-setup)
/Subtype /Link
@@ -227898,7 +228002,7 @@ endobj
/Type /Annot
>>
endobj
-1411 0 obj
+1413 0 obj
<< /Border [0 0 0]
/Dest (gradle-default-setup)
/Subtype /Link
@@ -227906,7 +228010,7 @@ endobj
/Type /Annot
>>
endobj
-1412 0 obj
+1414 0 obj
<< /Border [0 0 0]
/Dest (gradle-configure-plugin)
/Subtype /Link
@@ -227914,7 +228018,7 @@ endobj
/Type /Annot
>>
endobj
-1413 0 obj
+1415 0 obj
<< /Border [0 0 0]
/Dest (gradle-configure-plugin)
/Subtype /Link
@@ -227922,7 +228026,7 @@ endobj
/Type /Annot
>>
endobj
-1414 0 obj
+1416 0 obj
<< /Border [0 0 0]
/Dest (gradle-configuration-options)
/Subtype /Link
@@ -227930,7 +228034,7 @@ endobj
/Type /Annot
>>
endobj
-1415 0 obj
+1417 0 obj
<< /Border [0 0 0]
/Dest (gradle-configuration-options)
/Subtype /Link
@@ -227938,7 +228042,7 @@ endobj
/Type /Annot
>>
endobj
-1416 0 obj
+1418 0 obj
<< /Border [0 0 0]
/Dest (gradle-single-base-class)
/Subtype /Link
@@ -227946,7 +228050,7 @@ endobj
/Type /Annot
>>
endobj
-1417 0 obj
+1419 0 obj
<< /Border [0 0 0]
/Dest (gradle-single-base-class)
/Subtype /Link
@@ -227954,7 +228058,7 @@ endobj
/Type /Annot
>>
endobj
-1418 0 obj
+1420 0 obj
<< /Border [0 0 0]
/Dest (gradle-different-base-classes)
/Subtype /Link
@@ -227962,7 +228066,7 @@ endobj
/Type /Annot
>>
endobj
-1419 0 obj
+1421 0 obj
<< /Border [0 0 0]
/Dest (gradle-different-base-classes)
/Subtype /Link
@@ -227970,7 +228074,7 @@ endobj
/Type /Annot
>>
endobj
-1420 0 obj
+1422 0 obj
<< /Border [0 0 0]
/Dest (gradle-invoking-generated-tests)
/Subtype /Link
@@ -227978,7 +228082,7 @@ endobj
/Type /Annot
>>
endobj
-1421 0 obj
+1423 0 obj
<< /Border [0 0 0]
/Dest (gradle-invoking-generated-tests)
/Subtype /Link
@@ -227986,7 +228090,7 @@ endobj
/Type /Annot
>>
endobj
-1422 0 obj
+1424 0 obj
<< /Border [0 0 0]
/Dest (gradle-pushing-stubs-to-scm)
/Subtype /Link
@@ -227994,7 +228098,7 @@ endobj
/Type /Annot
>>
endobj
-1423 0 obj
+1425 0 obj
<< /Border [0 0 0]
/Dest (gradle-pushing-stubs-to-scm)
/Subtype /Link
@@ -228002,7 +228106,7 @@ endobj
/Type /Annot
>>
endobj
-1424 0 obj
+1426 0 obj
<< /Border [0 0 0]
/Dest (gradle-consumer)
/Subtype /Link
@@ -228010,7 +228114,7 @@ endobj
/Type /Annot
>>
endobj
-1425 0 obj
+1427 0 obj
<< /Border [0 0 0]
/Dest (gradle-consumer)
/Subtype /Link
@@ -228018,7 +228122,7 @@ endobj
/Type /Annot
>>
endobj
-1426 0 obj
+1428 0 obj
<< /Border [0 0 0]
/Dest (docker)
/Subtype /Link
@@ -228026,7 +228130,7 @@ endobj
/Type /Annot
>>
endobj
-1427 0 obj
+1429 0 obj
<< /Border [0 0 0]
/Dest (docker)
/Subtype /Link
@@ -228034,7 +228138,7 @@ endobj
/Type /Annot
>>
endobj
-1428 0 obj
+1430 0 obj
<< /Border [0 0 0]
/Dest (docker-intro)
/Subtype /Link
@@ -228042,7 +228146,7 @@ endobj
/Type /Annot
>>
endobj
-1429 0 obj
+1431 0 obj
<< /Border [0 0 0]
/Dest (docker-intro)
/Subtype /Link
@@ -228050,7 +228154,7 @@ endobj
/Type /Annot
>>
endobj
-1430 0 obj
+1432 0 obj
<< /Border [0 0 0]
/Dest (docker-how-it-works)
/Subtype /Link
@@ -228058,7 +228162,7 @@ endobj
/Type /Annot
>>
endobj
-1431 0 obj
+1433 0 obj
<< /Border [0 0 0]
/Dest (docker-how-it-works)
/Subtype /Link
@@ -228066,7 +228170,7 @@ endobj
/Type /Annot
>>
endobj
-1432 0 obj
+1434 0 obj
<< /Border [0 0 0]
/Dest (docker-stubrunner)
/Subtype /Link
@@ -228074,7 +228178,7 @@ endobj
/Type /Annot
>>
endobj
-1433 0 obj
+1435 0 obj
<< /Border [0 0 0]
/Dest (docker-stubrunner)
/Subtype /Link
@@ -228082,7 +228186,7 @@ endobj
/Type /Annot
>>
endobj
-1434 0 obj
+1436 0 obj
<< /Border [0 0 0]
/Dest (contract-customization)
/Subtype /Link
@@ -228090,7 +228194,7 @@ endobj
/Type /Annot
>>
endobj
-1435 0 obj
+1437 0 obj
<< /Border [0 0 0]
/Dest (contract-customization)
/Subtype /Link
@@ -228098,7 +228202,7 @@ endobj
/Type /Annot
>>
endobj
-1436 0 obj
+1438 0 obj
<< /Border [0 0 0]
/Dest (customization-customization)
/Subtype /Link
@@ -228106,7 +228210,7 @@ endobj
/Type /Annot
>>
endobj
-1437 0 obj
+1439 0 obj
<< /Border [0 0 0]
/Dest (customization-customization)
/Subtype /Link
@@ -228114,7 +228218,7 @@ endobj
/Type /Annot
>>
endobj
-1438 0 obj
+1440 0 obj
<< /Border [0 0 0]
/Dest (customization-wiremock)
/Subtype /Link
@@ -228122,7 +228226,7 @@ endobj
/Type /Annot
>>
endobj
-1439 0 obj
+1441 0 obj
<< /Border [0 0 0]
/Dest (customization-wiremock)
/Subtype /Link
@@ -228130,7 +228234,7 @@ endobj
/Type /Annot
>>
endobj
-1440 0 obj
+1442 0 obj
<< /Border [0 0 0]
/Dest (customization-pluggable-architecture)
/Subtype /Link
@@ -228138,7 +228242,7 @@ endobj
/Type /Annot
>>
endobj
-1441 0 obj
+1443 0 obj
<< /Border [0 0 0]
/Dest (customization-pluggable-architecture)
/Subtype /Link
@@ -228146,7 +228250,7 @@ endobj
/Type /Annot
>>
endobj
-1442 0 obj
+1444 0 obj
<< /Border [0 0 0]
/Dest (howto)
/Subtype /Link
@@ -228154,7 +228258,7 @@ endobj
/Type /Annot
>>
endobj
-1443 0 obj
+1445 0 obj
<< /Border [0 0 0]
/Dest (howto)
/Subtype /Link
@@ -228162,7 +228266,7 @@ endobj
/Type /Annot
>>
endobj
-1444 0 obj
+1446 0 obj
<< /Border [0 0 0]
/Dest (why-spring-cloud-contract)
/Subtype /Link
@@ -228170,7 +228274,7 @@ endobj
/Type /Annot
>>
endobj
-1445 0 obj
+1447 0 obj
<< /Border [0 0 0]
/Dest (why-spring-cloud-contract)
/Subtype /Link
@@ -228178,7 +228282,7 @@ endobj
/Type /Annot
>>
endobj
-1446 0 obj
+1448 0 obj
<< /Border [0 0 0]
/Dest (how-to-not-write-contracts-in-groovy)
/Subtype /Link
@@ -228186,7 +228290,7 @@ endobj
/Type /Annot
>>
endobj
-1447 0 obj
+1449 0 obj
<< /Border [0 0 0]
/Dest (how-to-not-write-contracts-in-groovy)
/Subtype /Link
@@ -228194,7 +228298,7 @@ endobj
/Type /Annot
>>
endobj
-1448 0 obj
+1450 0 obj
<< /Border [0 0 0]
/Dest (how-to-provide-dynamic-values)
/Subtype /Link
@@ -228202,7 +228306,7 @@ endobj
/Type /Annot
>>
endobj
-1449 0 obj
+1451 0 obj
<< /Border [0 0 0]
/Dest (how-to-provide-dynamic-values)
/Subtype /Link
@@ -228210,7 +228314,7 @@ endobj
/Type /Annot
>>
endobj
-1450 0 obj
+1452 0 obj
<< /Border [0 0 0]
/Dest (how-to-do-stubs-versioning)
/Subtype /Link
@@ -228218,7 +228322,7 @@ endobj
/Type /Annot
>>
endobj
-1451 0 obj
+1453 0 obj
<< /Border [0 0 0]
/Dest (how-to-do-stubs-versioning)
/Subtype /Link
@@ -228226,7 +228330,7 @@ endobj
/Type /Annot
>>
endobj
-1452 0 obj
+1454 0 obj
<< /Border [0 0 0]
/Dest (how-to-common-repo-with-contracts)
/Subtype /Link
@@ -228234,7 +228338,7 @@ endobj
/Type /Annot
>>
endobj
-1453 0 obj
+1455 0 obj
<< /Border [0 0 0]
/Dest (how-to-common-repo-with-contracts)
/Subtype /Link
@@ -228242,7 +228346,7 @@ endobj
/Type /Annot
>>
endobj
-1454 0 obj
+1456 0 obj
<< /Border [0 0 0]
/Dest (how-to-common-repo-with-contracts)
/Subtype /Link
@@ -228250,7 +228354,7 @@ endobj
/Type /Annot
>>
endobj
-1455 0 obj
+1457 0 obj
<< /Border [0 0 0]
/Dest (how-to-use-git-as-storage)
/Subtype /Link
@@ -228258,7 +228362,7 @@ endobj
/Type /Annot
>>
endobj
-1456 0 obj
+1458 0 obj
<< /Border [0 0 0]
/Dest (how-to-use-git-as-storage)
/Subtype /Link
@@ -228266,7 +228370,7 @@ endobj
/Type /Annot
>>
endobj
-1457 0 obj
+1459 0 obj
<< /Border [0 0 0]
/Dest (how-to-use-pact-broker)
/Subtype /Link
@@ -228274,7 +228378,7 @@ endobj
/Type /Annot
>>
endobj
-1458 0 obj
+1460 0 obj
<< /Border [0 0 0]
/Dest (how-to-use-pact-broker)
/Subtype /Link
@@ -228282,7 +228386,7 @@ endobj
/Type /Annot
>>
endobj
-1459 0 obj
+1461 0 obj
<< /Border [0 0 0]
/Dest (how-to-debug)
/Subtype /Link
@@ -228290,7 +228394,7 @@ endobj
/Type /Annot
>>
endobj
-1460 0 obj
+1462 0 obj
<< /Border [0 0 0]
/Dest (how-to-debug)
/Subtype /Link
@@ -228298,7 +228402,7 @@ endobj
/Type /Annot
>>
endobj
-1461 0 obj
+1463 0 obj
<< /Border [0 0 0]
/Dest (how-to-debug-wiremock)
/Subtype /Link
@@ -228306,7 +228410,7 @@ endobj
/Type /Annot
>>
endobj
-1462 0 obj
+1464 0 obj
<< /Border [0 0 0]
/Dest (how-to-debug-wiremock)
/Subtype /Link
@@ -228314,7 +228418,7 @@ endobj
/Type /Annot
>>
endobj
-1463 0 obj
+1465 0 obj
<< /Border [0 0 0]
/Dest (how-to-see-registered-stubs)
/Subtype /Link
@@ -228322,7 +228426,7 @@ endobj
/Type /Annot
>>
endobj
-1464 0 obj
+1466 0 obj
<< /Border [0 0 0]
/Dest (how-to-see-registered-stubs)
/Subtype /Link
@@ -228330,7 +228434,7 @@ endobj
/Type /Annot
>>
endobj
-1465 0 obj
+1467 0 obj
<< /Border [0 0 0]
/Dest (how-to-reference-text-from-file)
/Subtype /Link
@@ -228338,7 +228442,7 @@ endobj
/Type /Annot
>>
endobj
-1466 0 obj
+1468 0 obj
<< /Border [0 0 0]
/Dest (how-to-reference-text-from-file)
/Subtype /Link
@@ -228346,7 +228450,7 @@ endobj
/Type /Annot
>>
endobj
-1467 0 obj
+1469 0 obj
<< /Border [0 0 0]
/Dest (how-to-generate-pact-from-scc)
/Subtype /Link
@@ -228354,7 +228458,7 @@ endobj
/Type /Annot
>>
endobj
-1468 0 obj
+1470 0 obj
<< /Border [0 0 0]
/Dest (how-to-generate-pact-from-scc)
/Subtype /Link
@@ -228362,7 +228466,7 @@ endobj
/Type /Annot
>>
endobj
-1469 0 obj
+1471 0 obj
<< /Border [0 0 0]
/Dest (how-to-work-with-transitivie)
/Subtype /Link
@@ -228370,7 +228474,7 @@ endobj
/Type /Annot
>>
endobj
-1470 0 obj
+1472 0 obj
<< /Border [0 0 0]
/Dest (how-to-work-with-transitivie)
/Subtype /Link
@@ -228378,7 +228482,7 @@ endobj
/Type /Annot
>>
endobj
-1471 0 obj
+1473 0 obj
<< /Border [0 0 0]
/Dest (contract-dsl-rest-docs)
/Subtype /Link
@@ -228386,7 +228490,7 @@ endobj
/Type /Annot
>>
endobj
-1472 0 obj
+1474 0 obj
<< /Border [0 0 0]
/Dest (contract-dsl-rest-docs)
/Subtype /Link
@@ -228394,7 +228498,7 @@ endobj
/Type /Annot
>>
endobj
-1473 0 obj
+1475 0 obj
<< /Border [0 0 0]
/Dest (how-to-use-stubs-from-a-location)
/Subtype /Link
@@ -228402,7 +228506,7 @@ endobj
/Type /Annot
>>
endobj
-1474 0 obj
+1476 0 obj
<< /Border [0 0 0]
/Dest (how-to-use-stubs-from-a-location)
/Subtype /Link
@@ -228410,7 +228514,7 @@ endobj
/Type /Annot
>>
endobj
-1475 0 obj
+1477 0 obj
<< /Border [0 0 0]
/Dest (how-to-generate-stubs-at-runtime)
/Subtype /Link
@@ -228418,7 +228522,7 @@ endobj
/Type /Annot
>>
endobj
-1476 0 obj
+1478 0 obj
<< /Border [0 0 0]
/Dest (how-to-generate-stubs-at-runtime)
/Subtype /Link
@@ -228426,7 +228530,7 @@ endobj
/Type /Annot
>>
endobj
-1477 0 obj
+1479 0 obj
<< /Border [0 0 0]
/Dest (how-to-use-the-failonnostubs-feature)
/Subtype /Link
@@ -228434,7 +228538,7 @@ endobj
/Type /Annot
>>
endobj
-1478 0 obj
+1480 0 obj
<< /Border [0 0 0]
/Dest (how-to-use-the-failonnostubs-feature)
/Subtype /Link
@@ -228442,7 +228546,7 @@ endobj
/Type /Annot
>>
endobj
-1479 0 obj
+1481 0 obj
<< /Border [0 0 0]
/Dest (how-to-mark-contract-in-progress)
/Subtype /Link
@@ -228450,7 +228554,7 @@ endobj
/Type /Annot
>>
endobj
-1480 0 obj
+1482 0 obj
<< /Border [0 0 0]
/Dest (how-to-mark-contract-in-progress)
/Subtype /Link
@@ -228458,7 +228562,7 @@ endobj
/Type /Annot
>>
endobj
-1481 0 obj
+1483 0 obj
<< /Border [0 0 0]
/Dest (common-application-properties)
/Subtype /Link
@@ -228466,7 +228570,7 @@ endobj
/Type /Annot
>>
endobj
-1482 0 obj
+1484 0 obj
<< /Border [0 0 0]
/Dest (common-application-properties)
/Subtype /Link
@@ -228474,777 +228578,777 @@ endobj
/Type /Annot
>>
endobj
-1483 0 obj
+1485 0 obj
<< /Type /Outlines
/Count 85
-/First 1484 0 R
-/Last 1549 0 R
->>
-endobj
-1484 0 obj
-<< /Title
-/Parent 1483 0 R
-/Count 0
-/Next 1485 0 R
-/Dest [7 0 R /XYZ 0 841.89 null]
->>
-endobj
-1485 0 obj
-<< /Title
-/Parent 1483 0 R
-/Count 0
-/Next 1486 0 R
-/Prev 1484 0 R
-/Dest [11 0 R /XYZ 0 841.89 null]
+/First 1486 0 R
+/Last 1551 0 R
>>
endobj
1486 0 obj
-<< /Title
-/Parent 1483 0 R
+<< /Title
+/Parent 1485 0 R
/Count 0
/Next 1487 0 R
-/Prev 1485 0 R
-/Dest [17 0 R /XYZ 0 841.89 null]
+/Dest [7 0 R /XYZ 0 841.89 null]
>>
endobj
1487 0 obj
-<< /Title
-/Parent 1483 0 R
-/Count 5
-/First 1488 0 R
-/Last 1492 0 R
-/Next 1493 0 R
+<< /Title
+/Parent 1485 0 R
+/Count 0
+/Next 1488 0 R
/Prev 1486 0 R
-/Dest [24 0 R /XYZ 0 841.89 null]
+/Dest [11 0 R /XYZ 0 841.89 null]
>>
endobj
1488 0 obj
-<< /Title
-/Parent 1487 0 R
+<< /Title
+/Parent 1485 0 R
/Count 0
/Next 1489 0 R
-/Dest [24 0 R /XYZ 0 690.05 null]
+/Prev 1487 0 R
+/Dest [17 0 R /XYZ 0 841.89 null]
>>
endobj
1489 0 obj
-<< /Title
-/Parent 1487 0 R
-/Count 0
-/Next 1490 0 R
+<< /Title
+/Parent 1485 0 R
+/Count 5
+/First 1490 0 R
+/Last 1494 0 R
+/Next 1495 0 R
/Prev 1488 0 R
-/Dest [54 0 R /XYZ 0 257.355 null]
+/Dest [24 0 R /XYZ 0 841.89 null]
>>
endobj
1490 0 obj
-<< /Title
-/Parent 1487 0 R
+<< /Title
+/Parent 1489 0 R
/Count 0
/Next 1491 0 R
-/Prev 1489 0 R
-/Dest [67 0 R /XYZ 0 213.13 null]
+/Dest [24 0 R /XYZ 0 690.05 null]
>>
endobj
1491 0 obj
-<< /Title
-/Parent 1487 0 R
+<< /Title
+/Parent 1489 0 R
/Count 0
/Next 1492 0 R
/Prev 1490 0 R
-/Dest [104 0 R /XYZ 0 423.61 null]
+/Dest [54 0 R /XYZ 0 257.355 null]
>>
endobj
1492 0 obj
-<< /Title
-/Parent 1487 0 R
+<< /Title
+/Parent 1489 0 R
/Count 0
+/Next 1493 0 R
/Prev 1491 0 R
-/Dest [162 0 R /XYZ 0 483.41 null]
+/Dest [67 0 R /XYZ 0 213.13 null]
>>
endobj
1493 0 obj
-<< /Title
-/Parent 1483 0 R
-/Count 9
-/First 1494 0 R
-/Last 1502 0 R
-/Next 1503 0 R
-/Prev 1487 0 R
-/Dest [184 0 R /XYZ 0 841.89 null]
+<< /Title
+/Parent 1489 0 R
+/Count 0
+/Next 1494 0 R
+/Prev 1492 0 R
+/Dest [104 0 R /XYZ 0 423.61 null]
>>
endobj
1494 0 obj
-<< /Title
-/Parent 1493 0 R
+<< /Title
+/Parent 1489 0 R
/Count 0
-/Next 1495 0 R
-/Dest [184 0 R /XYZ 0 662.27 null]
+/Prev 1493 0 R
+/Dest [162 0 R /XYZ 0 483.41 null]
>>
endobj
1495 0 obj
-<< /Title
-/Parent 1493 0 R
-/Count 0
-/Next 1496 0 R
-/Prev 1494 0 R
-/Dest [184 0 R /XYZ 0 526.37 null]
+<< /Title
+/Parent 1485 0 R
+/Count 9
+/First 1496 0 R
+/Last 1504 0 R
+/Next 1505 0 R
+/Prev 1489 0 R
+/Dest [184 0 R /XYZ 0 841.89 null]
>>
endobj
1496 0 obj
-<< /Title
-/Parent 1493 0 R
+<< /Title
+/Parent 1495 0 R
/Count 0
/Next 1497 0 R
-/Prev 1495 0 R
-/Dest [207 0 R /XYZ 0 359.359 null]
+/Dest [184 0 R /XYZ 0 662.27 null]
>>
endobj
1497 0 obj
-<< /Title
-/Parent 1493 0 R
+<< /Title
+/Parent 1495 0 R
/Count 0
/Next 1498 0 R
/Prev 1496 0 R
-/Dest [207 0 R /XYZ 0 251.239 null]
+/Dest [184 0 R /XYZ 0 526.37 null]
>>
endobj
1498 0 obj
-<< /Title
-/Parent 1493 0 R
+<< /Title
+/Parent 1495 0 R
/Count 0
/Next 1499 0 R
/Prev 1497 0 R
-/Dest [233 0 R /XYZ 0 778.86 null]
+/Dest [207 0 R /XYZ 0 359.359 null]
>>
endobj
1499 0 obj
-<< /Title
-/Parent 1493 0 R
+<< /Title
+/Parent 1495 0 R
/Count 0
/Next 1500 0 R
/Prev 1498 0 R
-/Dest [233 0 R /XYZ 0 583.62 null]
+/Dest [207 0 R /XYZ 0 251.239 null]
>>
endobj
1500 0 obj
-<< /Title
-/Parent 1493 0 R
+<< /Title
+/Parent 1495 0 R
/Count 0
/Next 1501 0 R
/Prev 1499 0 R
-/Dest [252 0 R /XYZ 0 132.49 null]
+/Dest [233 0 R /XYZ 0 778.86 null]
>>
endobj
1501 0 obj
-<< /Title
-/Parent 1493 0 R
+<< /Title
+/Parent 1495 0 R
/Count 0
/Next 1502 0 R
/Prev 1500 0 R
-/Dest [262 0 R /XYZ 0 678.99 null]
+/Dest [233 0 R /XYZ 0 583.62 null]
>>
endobj
1502 0 obj
-<< /Title
-/Parent 1493 0 R
+<< /Title
+/Parent 1495 0 R
/Count 0
+/Next 1503 0 R
/Prev 1501 0 R
-/Dest [272 0 R /XYZ 0 396.799 null]
+/Dest [252 0 R /XYZ 0 132.49 null]
>>
endobj
1503 0 obj
-<< /Title
-/Parent 1483 0 R
-/Count 8
-/First 1504 0 R
-/Last 1511 0 R
-/Next 1512 0 R
-/Prev 1493 0 R
-/Dest [279 0 R /XYZ 0 841.89 null]
+<< /Title
+/Parent 1495 0 R
+/Count 0
+/Next 1504 0 R
+/Prev 1502 0 R
+/Dest [262 0 R /XYZ 0 678.99 null]
>>
endobj
1504 0 obj
-<< /Title
-/Parent 1503 0 R
+<< /Title
+/Parent 1495 0 R
/Count 0
-/Next 1505 0 R
-/Dest [279 0 R /XYZ 0 690.05 null]
+/Prev 1503 0 R
+/Dest [272 0 R /XYZ 0 396.799 null]
>>
endobj
1505 0 obj
-<< /Title
-/Parent 1503 0 R
-/Count 0
-/Next 1506 0 R
-/Prev 1504 0 R
-/Dest [341 0 R /XYZ 0 409.279 null]
+<< /Title
+/Parent 1485 0 R
+/Count 8
+/First 1506 0 R
+/Last 1513 0 R
+/Next 1514 0 R
+/Prev 1495 0 R
+/Dest [279 0 R /XYZ 0 841.89 null]
>>
endobj
1506 0 obj
-<< /Title
-/Parent 1503 0 R
+<< /Title
+/Parent 1505 0 R
/Count 0
/Next 1507 0 R
-/Prev 1505 0 R
-/Dest [528 0 R /XYZ 0 841.89 null]
+/Dest [279 0 R /XYZ 0 690.05 null]
>>
endobj
1507 0 obj
-<< /Title
-/Parent 1503 0 R
+<< /Title
+/Parent 1505 0 R
/Count 0
/Next 1508 0 R
/Prev 1506 0 R
-/Dest [558 0 R /XYZ 0 291.61 null]
+/Dest [341 0 R /XYZ 0 409.279 null]
>>
endobj
1508 0 obj
-<< /Title
-/Parent 1503 0 R
+<< /Title
+/Parent 1505 0 R
/Count 0
/Next 1509 0 R
/Prev 1507 0 R
-/Dest [721 0 R /XYZ 0 688.93 null]
+/Dest [528 0 R /XYZ 0 841.89 null]
>>
endobj
1509 0 obj
-<< /Title
-/Parent 1503 0 R
+<< /Title
+/Parent 1505 0 R
/Count 0
/Next 1510 0 R
/Prev 1508 0 R
-/Dest [859 0 R /XYZ 0 841.89 null]
+/Dest [558 0 R /XYZ 0 291.61 null]
>>
endobj
1510 0 obj
-<< /Title
-/Parent 1503 0 R
+<< /Title
+/Parent 1505 0 R
/Count 0
/Next 1511 0 R
/Prev 1509 0 R
-/Dest [877 0 R /XYZ 0 196.55 null]
+/Dest [721 0 R /XYZ 0 688.93 null]
>>
endobj
1511 0 obj
-<< /Title