From b349d3bbb2d6d73f3f958867ab8f6e9a01d9be64 Mon Sep 17 00:00:00 2001 From: ColinBruce Date: Thu, 15 Aug 2024 15:16:08 +0100 Subject: [PATCH 1/5] AP-5235: Remove existing proceeding_types/all service --- .../legal_framework/proceeding_types/all.rb | 47 -------- .../proceeding_types/all_spec.rb | 107 ------------------ 2 files changed, 154 deletions(-) delete mode 100644 app/services/legal_framework/proceeding_types/all.rb delete mode 100644 spec/services/legal_framework/proceeding_types/all_spec.rb diff --git a/app/services/legal_framework/proceeding_types/all.rb b/app/services/legal_framework/proceeding_types/all.rb deleted file mode 100644 index 036281d95a..0000000000 --- a/app/services/legal_framework/proceeding_types/all.rb +++ /dev/null @@ -1,47 +0,0 @@ -module LegalFramework - module ProceedingTypes - class All < BaseApiCall - class ProceedingTypeStruct - attr_reader :ccms_code, :meaning, :description, :ccms_category_law, :ccms_matter_code, :ccms_matter, :sca_core, :sca_related - - def initialize(pt_hash) - @ccms_code = pt_hash["ccms_code"] - @meaning = pt_hash["meaning"] - @description = pt_hash["description"] - @ccms_category_law = pt_hash["ccms_category_law"] - @ccms_matter_code = pt_hash["ccms_matter_code"] - @ccms_matter = pt_hash["ccms_matter"] - @sca_core = pt_hash["sca_core"] - @sca_related = pt_hash["sca_related"] - end - - def not_sca? - [@sca_core, @sca_related].all?(false) - end - end - - def initialize(params) - super() - @provider = params[:provider] - end - - def call - Setting.special_childrens_act? ? unfiltered_payload : filtered_payload - end - - def path - "/proceeding_types/all" - end - - private - - def unfiltered_payload - JSON.parse(request.body).map { |pt_hash| ProceedingTypeStruct.new(pt_hash) } - end - - def filtered_payload - unfiltered_payload.select(&:not_sca?) - end - end - end -end diff --git a/spec/services/legal_framework/proceeding_types/all_spec.rb b/spec/services/legal_framework/proceeding_types/all_spec.rb deleted file mode 100644 index 9563b15f0f..0000000000 --- a/spec/services/legal_framework/proceeding_types/all_spec.rb +++ /dev/null @@ -1,107 +0,0 @@ -require "rails_helper" - -RSpec.describe LegalFramework::ProceedingTypes::All do - subject(:all) { described_class } - - before do - allow(Setting).to receive(:special_childrens_act?).and_return(sca_enabled) - stub_request(:get, uri).to_return(body: all_proceeding_types_payload) - end - - let(:uri) { "#{Rails.configuration.x.legal_framework_api_host}/proceeding_types/all" } - - describe ".call" do - subject(:call) { all.call(provider:) } - - before { call } - - let(:provider) { create(:provider) } - - context "when the special children act setting is on" do - let(:sca_enabled) { true } - - it "returns all the proceedings" do - expect(call.map(&:ccms_code)).to match_array %w[DA001 SE097 DA003 SE016E DA006 PB003] - end - end - - context "when the special children act setting is off" do - let(:sca_enabled) { false } - - it "returns all the proceedings" do - expect(call.map(&:ccms_code)).to match_array %w[DA001 SE097 DA003 SE016E DA006] - end - end - end - - def all_proceeding_types_payload - [ - { - ccms_code: "DA001", - meaning: "Inherent jurisdiction high court injunction", - description: "to be represented on an application for an injunction, order or declaration under the inherent jurisdiction of the court.", - full_s8_only: false, - sca_core: false, - sca_related: false, - ccms_category_law: "Family", - ccms_matter_code: "MINJN", - ccms_matter: "Domestic abuse", - }, - { - ccms_code: "SE097", - meaning: "Reloacation enforcement", - description: "to be represented on an application for the revocation of an enforcement order under section 11J and Schedule A1 Children Act 1989.", - full_s8_only: true, - sca_core: false, - sca_related: false, - ccms_category_law: "Family", - ccms_matter_code: "KSEC8", - ccms_matter: "Children - section 8", - }, - { - ccms_code: "DA003", - meaning: "Harassment - injunction", - description: "to be represented in an action for an injunction under section 3 Protection from Harassment Act 1997.", - full_s8_only: false, - sca_core: false, - sca_related: false, - ccms_category_law: "Family", - ccms_matter_code: "MINJN", - ccms_matter: "Domestic abuse", - }, - { - ccms_code: "SE016E", - meaning: "Vary CAO residence-Enforcement", - description: "to be represented on an application to vary or discharge a child arrangements order –where the child(ren) will live. Enforcement only.", - full_s8_only: true, - sca_core: false, - sca_related: false, - ccms_category_law: "Family", - ccms_matter_code: "KSEC8", - ccms_matter: "Children - section 8", - }, - { - ccms_code: "DA006", - meaning: "Extend, variation or discharge - Part IV", - description: "to be represented on an application to extend, vary or discharge an order under Part IV Family Law Act 1996", - full_s8_only: false, - sca_core: false, - sca_related: false, - ccms_category_law: "Family", - ccms_matter_code: "MINJN", - ccms_matter: "Domestic abuse", - }, - { - ccms_code: "PB003", - meaning: "Child assessment order", - description: "to be represented on an application for a child assessment order.", - full_s8_only: false, - sca_core: true, - sca_related: false, - ccms_category_law: "Family", - ccms_matter_code: "KPBLW", - ccms_matter: "Special Children Act", - }, - ].to_json - end -end From a14de9703fa632d4d9ccfedf573726bdf79c1627 Mon Sep 17 00:00:00 2001 From: ColinBruce Date: Mon, 12 Aug 2024 15:34:48 +0100 Subject: [PATCH 2/5] AP-5235: Add new ProceedingTypes Filter service --- .../providers/proceedings_types_controller.rb | 2 +- .../legal_framework/proceeding_types/all.rb | 70 +++++++++++ .../proceeding_types/all_spec.rb | 112 ++++++++++++++++++ 3 files changed, 183 insertions(+), 1 deletion(-) create mode 100644 app/services/legal_framework/proceeding_types/all.rb create mode 100644 spec/services/legal_framework/proceeding_types/all_spec.rb diff --git a/app/controllers/providers/proceedings_types_controller.rb b/app/controllers/providers/proceedings_types_controller.rb index 68ee41edb1..733f8f8b59 100644 --- a/app/controllers/providers/proceedings_types_controller.rb +++ b/app/controllers/providers/proceedings_types_controller.rb @@ -39,7 +39,7 @@ def form_params end def proceeding_types - @proceeding_types ||= LegalFramework::ProceedingTypes::All.call(provider: current_provider) + @proceeding_types ||= LegalFramework::ProceedingTypes::All.call(legal_aid_application) end def excluded_codes diff --git a/app/services/legal_framework/proceeding_types/all.rb b/app/services/legal_framework/proceeding_types/all.rb new file mode 100644 index 0000000000..d67cef0ec9 --- /dev/null +++ b/app/services/legal_framework/proceeding_types/all.rb @@ -0,0 +1,70 @@ +module LegalFramework + module ProceedingTypes + class All < BaseApiCall + class ProceedingTypeStruct + attr_reader :ccms_code, :meaning, :description, :ccms_category_law, :ccms_matter_code, :ccms_matter, :sca_core, :sca_related + + def initialize(pt_hash) + @ccms_code = pt_hash["ccms_code"] + @meaning = pt_hash["meaning"] + @description = pt_hash["description"] + @ccms_category_law = pt_hash["ccms_category_law"] + @ccms_matter_code = pt_hash["ccms_matter_code"] + @ccms_matter = pt_hash["ccms_matter"] + @sca_core = pt_hash["sca_core"] + @sca_related = pt_hash["sca_related"] + end + + # TODO: remove the below when the SCA feature flag is removed + def not_sca? + [@sca_core, @sca_related].all?(false) + end + end + + def self.call(legal_aid_application) + new(legal_aid_application).call + end + + def initialize(legal_aid_application) + super() + @legal_aid_application = legal_aid_application + end + + def call + result = JSON.parse(request.body).map { |pt_hash| ProceedingTypeStruct.new(pt_hash) } + # TODO: remove the below when the SCA feature flag is removed + # filter out SCA applications + result.select!(&:not_sca?) unless Setting.special_childrens_act? + result + end + + private + + def request_body + { + current_proceedings: @legal_aid_application.proceedings&.map(&:ccms_code)&.join(","), + allowed_categories: %w[MAT], # TODO: replace with details from new PDA, for now hardcoded to only current category type + search_term: "", # TODO: add optional parameter to the initializer, but for now leave always empty + }.to_json + end + + def request + conn.post do |request| + request.url url + request.headers["Content-Type"] = "application/json" + request.body = request_body + end + end + + def path + "/proceeding_types/filter" + end + + def headers + { + "Content-Type" => "application/json", + } + end + end + end +end diff --git a/spec/services/legal_framework/proceeding_types/all_spec.rb b/spec/services/legal_framework/proceeding_types/all_spec.rb new file mode 100644 index 0000000000..f6635b8d76 --- /dev/null +++ b/spec/services/legal_framework/proceeding_types/all_spec.rb @@ -0,0 +1,112 @@ +require "rails_helper" + +RSpec.describe LegalFramework::ProceedingTypes::All do + subject(:all) { described_class.new(legal_aid_application) } + + before do + allow(Setting).to receive(:special_childrens_act?).and_return(sca_enabled) + stub_request(:post, uri).to_return(body: all_proceeding_types_payload) + end + + let(:legal_aid_application) { create :legal_aid_application } + let(:uri) { "#{Rails.configuration.x.legal_framework_api_host}/proceeding_types/filter" } + + describe ".call" do + subject(:call) { all.call } + + before { call } + + context "when the special children act setting is on" do + let(:sca_enabled) { true } + + it "returns the expected proceedings" do + expect(call.map(&:ccms_code)).to match_array %w[DA001 SE097 DA003 SE016E DA006 PB003] + end + end + + context "when the special children act setting is off" do + let(:sca_enabled) { false } + + it "returns the expected proceedings" do + expect(call.map(&:ccms_code)).to match_array %w[DA001 SE097 DA003 SE016E DA006] + end + end + end + + def all_proceeding_types_payload + [ + { + ccms_code: "DA001", + meaning: "Inherent jurisdiction high court injunction", + description: "to be represented on an application for an injunction, order or declaration under the inherent jurisdiction of the court.", + full_s8_only: false, + sca_core: false, + sca_related: false, + ccms_category_law: "Family", + ccms_category_law_code: "MAT", + ccms_matter_code: "MINJN", + ccms_matter: "Domestic abuse", + }, + { + ccms_code: "SE097", + meaning: "Reloacation enforcement", + description: "to be represented on an application for the revocation of an enforcement order under section 11J and Schedule A1 Children Act 1989.", + full_s8_only: true, + sca_core: false, + sca_related: false, + ccms_category_law: "Family", + ccms_category_law_code: "MAT", + ccms_matter_code: "KSEC8", + ccms_matter: "Children - section 8", + }, + { + ccms_code: "DA003", + meaning: "Harassment - injunction", + description: "to be represented in an action for an injunction under section 3 Protection from Harassment Act 1997.", + full_s8_only: false, + sca_core: false, + sca_related: false, + ccms_category_law: "Family", + ccms_category_law_code: "MAT", + ccms_matter_code: "MINJN", + ccms_matter: "Domestic abuse", + }, + { + ccms_code: "SE016E", + meaning: "Vary CAO residence-Enforcement", + description: "to be represented on an application to vary or discharge a child arrangements order –where the child(ren) will live. Enforcement only.", + full_s8_only: true, + sca_core: false, + sca_related: false, + ccms_category_law: "Family", + ccms_category_law_code: "MAT", + ccms_matter_code: "KSEC8", + ccms_matter: "Children - section 8", + }, + { + ccms_code: "DA006", + meaning: "Extend, variation or discharge - Part IV", + description: "to be represented on an application to extend, vary or discharge an order under Part IV Family Law Act 1996", + full_s8_only: false, + sca_core: false, + sca_related: false, + ccms_category_law: "Family", + ccms_category_law_code: "MAT", + ccms_matter_code: "MINJN", + ccms_matter: "Domestic abuse", + }, + { + ccms_code: "PB003", + meaning: "Child assessment order", + description: "to be represented on an application for a child assessment order.", + full_s8_only: false, + sca_core: true, + sca_related: false, + ccms_category_law: "Family", + ccms_category_law_code: "MAT", + ccms_matter_code: "KPBLW", + ccms_matter: "Special Children Act", + }, + ].to_json + end +end From c4b81322c7a41f2e608698feb068802c0416b693 Mon Sep 17 00:00:00 2001 From: ColinBruce Date: Tue, 20 Aug 2024 12:41:19 +0100 Subject: [PATCH 3/5] AP-5235: Update ProceedingsTypesController tests The new logic won't allow adding multiples of the same proceeding which is what this test did. It created an application with DA001 and then submitted the same code again. --- spec/requests/providers/proceedings_types_controller_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/requests/providers/proceedings_types_controller_spec.rb b/spec/requests/providers/proceedings_types_controller_spec.rb index 4630d3b606..badc361173 100644 --- a/spec/requests/providers/proceedings_types_controller_spec.rb +++ b/spec/requests/providers/proceedings_types_controller_spec.rb @@ -95,7 +95,7 @@ :with_proceedings, set_lead_proceeding: :da001) end - let(:proceeding) { legal_aid_application.proceedings.find_by(ccms_code: "DA001") } + let(:proceeding) { create(:proceeding, :da004) } let(:params) do { id: proceeding.ccms_code, From 5402d653d8c4c8f5d3a2ffc2b5dd740866c498e5 Mon Sep 17 00:00:00 2001 From: ColinBruce Date: Tue, 20 Aug 2024 12:11:30 +0100 Subject: [PATCH 4/5] AP-5235: Re-record RSpec cassettes that reference the old endpoint Ensure they all use the new endpoint, if needed --- .../has_a_back_link_to_the_previous_page.yml | 32 +++---- .../has_a_link_to_the_previous_page.yml | 32 +++---- ...directs_to_same_page_without_the_param.yml | 32 +++---- .../has_a_back_link_to_the_previous_page.yml | 92 +++++++++---------- .../records_the_current_controller_name.yml | 32 +++---- .../returns_http_success.yml | 32 +++---- ...age_back_to_entering_applicant_details.yml | 32 +++---- .../redirects_back.yml | 32 +++---- .../proceedings_types/displays_errors.yml | 24 ++--- .../proceedings_types/renders_index.yml | 24 ++--- .../calls_the_add_proceeding_service.yml | 24 ++--- .../redirects_to_next_step.yml | 24 ++--- .../displays_errors.yml | 24 ++--- .../renders_index.yml | 24 ++--- .../redirects_to_the_address_lookup_page.yml | 30 +++--- ...to_the_manual_address_page_lookup_page.yml | 24 ++--- .../displays_no_errors.yml | 24 ++--- ...does_not_displays_the_proceeding_types.yml | 24 ++--- .../returns_http_success.yml | 24 ++--- .../redirects_to_next_page.yml | 60 ++++++++++++ 20 files changed, 343 insertions(+), 303 deletions(-) create mode 100644 spec/cassettes/SubstantiveDefaultsController/POST_/providers/applications/_legal_aid_application_id/substantive_defaults/_proceeding_id/when_the_provider_is_authenticated/when_the_Continue_button_is_pressed/when_the_application_is_a_Special_Childrens_Act_application/redirects_to_next_page.yml diff --git a/spec/cassettes/Backable/back_path/has_a_back_link_to_the_previous_page.yml b/spec/cassettes/Backable/back_path/has_a_back_link_to_the_previous_page.yml index 918af25958..512fb5080e 100644 --- a/spec/cassettes/Backable/back_path/has_a_back_link_to_the_previous_page.yml +++ b/spec/cassettes/Backable/back_path/has_a_back_link_to_the_previous_page.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,21 +21,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:31:22 GMT + - Tue, 20 Aug 2024 11:21:18 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '17643' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -43,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 5f396eaab904592828af41a858387554 + - 2760766d18e9f7175b8f524e20b47cac X-Runtime: - - '0.010249' + - '0.028951' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:31:22 GMT -recorded_with: VCR 6.1.0 + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:21:18 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Backable/back_path/when_we_go_back_once/has_a_link_to_the_previous_page.yml b/spec/cassettes/Backable/back_path/when_we_go_back_once/has_a_link_to_the_previous_page.yml index b22d2148d8..fdff1e5b14 100644 --- a/spec/cassettes/Backable/back_path/when_we_go_back_once/has_a_link_to_the_previous_page.yml +++ b/spec/cassettes/Backable/back_path/when_we_go_back_once/has_a_link_to_the_previous_page.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,21 +21,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:31:24 GMT + - Tue, 20 Aug 2024 11:21:19 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '17643' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -43,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - be4c62ee9fbaabfe670c26f6697db06d + - 71978436e89635baea871772f54cd613 X-Runtime: - - '0.067712' + - '0.035314' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:31:24 GMT -recorded_with: VCR 6.1.0 + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:21:19 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Backable/back_path/when_we_go_back_once/redirects_to_same_page_without_the_param.yml b/spec/cassettes/Backable/back_path/when_we_go_back_once/redirects_to_same_page_without_the_param.yml index 3ad83532c4..1a3c99609a 100644 --- a/spec/cassettes/Backable/back_path/when_we_go_back_once/redirects_to_same_page_without_the_param.yml +++ b/spec/cassettes/Backable/back_path/when_we_go_back_once/redirects_to_same_page_without_the_param.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,21 +21,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:31:23 GMT + - Tue, 20 Aug 2024 11:21:20 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '17643' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -43,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 5b9fc2c7e4285bfc5fa75bba610786d7 + - 64e019eb12cdf17bbee79229988c5339 X-Runtime: - - '0.015329' + - '0.037238' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:31:23 GMT -recorded_with: VCR 6.1.0 + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:21:20 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Backable/back_path/when_we_reload_the_current_page_several_times/has_a_back_link_to_the_previous_page.yml b/spec/cassettes/Backable/back_path/when_we_reload_the_current_page_several_times/has_a_back_link_to_the_previous_page.yml index 74042c2281..a37d407969 100644 --- a/spec/cassettes/Backable/back_path/when_we_reload_the_current_page_several_times/has_a_back_link_to_the_previous_page.yml +++ b/spec/cassettes/Backable/back_path/when_we_reload_the_current_page_several_times/has_a_back_link_to_the_previous_page.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,21 +21,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:31:25 GMT + - Tue, 20 Aug 2024 11:21:21 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '17643' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -43,31 +41,31 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - f8b2221bde3e4486b6e4441edef9f1ff + - 28b0243c10bfb51bc4870eec23695ffb X-Runtime: - - '0.059852' + - '0.028260' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:31:25 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:21:21 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -78,21 +76,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:31:25 GMT + - Tue, 20 Aug 2024 11:21:22 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '17643' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -100,31 +96,31 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - a2f1aaedecc0bdfcb34c5962c8f40e86 + - 3bcd6b80bd688dc4e1f8d5d7856b375a X-Runtime: - - '0.010661' + - '0.029308' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:31:25 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:21:22 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -135,21 +131,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:31:25 GMT + - Tue, 20 Aug 2024 11:21:22 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '17643' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -157,18 +151,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 9e07eee4f10beca9ae65c0a7b2ad7f17 + - 05e3d3f7a2388774259fee2aa49ce6ee X-Runtime: - - '0.014114' + - '0.029147' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:31:25 GMT -recorded_with: VCR 6.1.0 + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:21:22 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ApplicationDependable/GET_an_action/when_the_provider_is_authenticated/records_the_current_controller_name.yml b/spec/cassettes/Providers_ApplicationDependable/GET_an_action/when_the_provider_is_authenticated/records_the_current_controller_name.yml index d1da9aac34..8ea746f67d 100644 --- a/spec/cassettes/Providers_ApplicationDependable/GET_an_action/when_the_provider_is_authenticated/records_the_current_controller_name.yml +++ b/spec/cassettes/Providers_ApplicationDependable/GET_an_action/when_the_provider_is_authenticated/records_the_current_controller_name.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,21 +21,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:24:52 GMT + - Tue, 20 Aug 2024 11:30:48 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '17643' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -43,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 456e712e878d3642c759992d80af5b66 + - 7cad0f07c9037a4b15e2a27b41e62489 X-Runtime: - - '0.010794' + - '0.083889' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:24:52 GMT -recorded_with: VCR 6.1.0 + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:30:48 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ApplicationDependable/GET_an_action/when_the_provider_is_authenticated/returns_http_success.yml b/spec/cassettes/Providers_ApplicationDependable/GET_an_action/when_the_provider_is_authenticated/returns_http_success.yml index f4eab0971a..3c058f3883 100644 --- a/spec/cassettes/Providers_ApplicationDependable/GET_an_action/when_the_provider_is_authenticated/returns_http_success.yml +++ b/spec/cassettes/Providers_ApplicationDependable/GET_an_action/when_the_provider_is_authenticated/returns_http_success.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,21 +21,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:24:52 GMT + - Tue, 20 Aug 2024 11:30:47 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '17643' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -43,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 3adbfc4e84f6f3c85f954c5dfa836390 + - 655d8547cf4f48605a8c708b58554520 X-Runtime: - - '0.010813' + - '0.059639' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:24:52 GMT -recorded_with: VCR 6.1.0 + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:30:47 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_CheckProviderAnswersController/POST_/providers/applications/_legal_aid_application_id/check_provider_answers/reset/when_the_provider_is_authenticated/changes_the_stage_back_to_entering_applicant_details.yml b/spec/cassettes/Providers_CheckProviderAnswersController/POST_/providers/applications/_legal_aid_application_id/check_provider_answers/reset/when_the_provider_is_authenticated/changes_the_stage_back_to_entering_applicant_details.yml index a228f04ccf..b628ba9496 100644 --- a/spec/cassettes/Providers_CheckProviderAnswersController/POST_/providers/applications/_legal_aid_application_id/check_provider_answers/reset/when_the_provider_is_authenticated/changes_the_stage_back_to_entering_applicant_details.yml +++ b/spec/cassettes/Providers_CheckProviderAnswersController/POST_/providers/applications/_legal_aid_application_id/check_provider_answers/reset/when_the_provider_is_authenticated/changes_the_stage_back_to_entering_applicant_details.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,21 +21,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:30:25 GMT + - Tue, 20 Aug 2024 11:25:05 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '14969' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -43,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - b90fc9be1155c44775e927031ca9a3cd + - bf8b5a95cbb489d5673e6ada801ec115 X-Runtime: - - '0.012931' + - '0.038631' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:30:25 GMT -recorded_with: VCR 6.1.0 + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:25:04 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_CheckProviderAnswersController/POST_/providers/applications/_legal_aid_application_id/check_provider_answers/reset/when_the_provider_is_authenticated/redirects_back.yml b/spec/cassettes/Providers_CheckProviderAnswersController/POST_/providers/applications/_legal_aid_application_id/check_provider_answers/reset/when_the_provider_is_authenticated/redirects_back.yml index 8c6344b340..41bdac14f9 100644 --- a/spec/cassettes/Providers_CheckProviderAnswersController/POST_/providers/applications/_legal_aid_application_id/check_provider_answers/reset/when_the_provider_is_authenticated/redirects_back.yml +++ b/spec/cassettes/Providers_CheckProviderAnswersController/POST_/providers/applications/_legal_aid_application_id/check_provider_answers/reset/when_the_provider_is_authenticated/redirects_back.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.0 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,21 +21,19 @@ http_interactions: message: OK headers: Date: - - Tue, 19 Jul 2022 11:30:26 GMT + - Tue, 20 Aug 2024 11:25:04 GMT Content-Type: - application/json; charset=utf-8 - Transfer-Encoding: - - chunked + Content-Length: + - '14969' Connection: - keep-alive X-Frame-Options: - SAMEORIGIN X-Xss-Protection: - - 1; mode=block + - '0' X-Content-Type-Options: - nosniff - X-Download-Options: - - noopen X-Permitted-Cross-Domain-Policies: - none Referrer-Policy: @@ -43,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"e01e84e342f1c3c6ef73246a1af2bcc4" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - '069fc401f33608234ddb49825504abae' + - 8f04a193d2fa45f28f6803af536921cd X-Runtime: - - '0.015860' + - '0.038131' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDYiLCJtZWFuaW5nIjoiRXh0ZW5kLCB2YXJpYXRpb24gb3IgZGlzY2hhcmdlIC0gUGFydCBJViIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZXh0ZW5kLCB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYiLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNCIsIm1lYW5pbmciOiJOb24tbW9sZXN0YXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIG5vbi1tb2xlc3RhdGlvbiBvcmRlci4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9XQ== - recorded_at: Tue, 19 Jul 2022 11:30:25 GMT -recorded_with: VCR 6.1.0 + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:25:04 GMT +recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/displays_errors.yml b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/displays_errors.yml index 0f8a184bed..81f67b16ce 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/displays_errors.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/displays_errors.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:04 GMT + - Tue, 20 Aug 2024 11:20:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 3087824779e9caa1e49831552eeb9c49 + - 7dae503df94302056c116a44a5dec2e4 X-Runtime: - - '0.032473' + - '0.040324' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:04 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:13 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/renders_index.yml b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/renders_index.yml index 69858bb0a2..d271b1034f 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/renders_index.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/renders_index.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:05 GMT + - Tue, 20 Aug 2024 11:20:13 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 1f24d38e918519060986a4daad36b30b + - c454ea9468150484f19a853009aa623f X-Runtime: - - '0.021104' + - '0.042763' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:05 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:13 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/calls_the_add_proceeding_service.yml b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/calls_the_add_proceeding_service.yml index 7426d5bd88..8a613cda74 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/calls_the_add_proceeding_service.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/calls_the_add_proceeding_service.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:06 GMT + - Tue, 20 Aug 2024 11:20:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - e1dea1b5bfcb3f2d5229bf45bc841e90 + - 96ebc137da266616b8fa1948ff828dd8 X-Runtime: - - '0.034280' + - '0.044197' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:06 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:14 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/redirects_to_next_step.yml b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/redirects_to_next_step.yml index 8f12452e50..73f7ab752e 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/redirects_to_next_step.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/redirects_to_next_step.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:06 GMT + - Tue, 20 Aug 2024 11:20:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - b841261b2d662eb7e8f9cdb8c0dd1590 + - 6fcbc5ca4fae8ab0aa73bdb190c3f5b7 X-Runtime: - - '0.021129' + - '0.034740' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:06 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:14 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/when_LegalFramework_ProceedingTypesService_call_returns_false/displays_errors.yml b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/when_LegalFramework_ProceedingTypesService_call_returns_false/displays_errors.yml index b4019380f5..3deada5d76 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/when_LegalFramework_ProceedingTypesService_call_returns_false/displays_errors.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/when_LegalFramework_ProceedingTypesService_call_returns_false/displays_errors.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:07 GMT + - Tue, 20 Aug 2024 11:20:15 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - c8cd365b32b2919ae4bca177137bae97 + - b0fa1313f2660cdba980403fa109ac37 X-Runtime: - - '0.023865' + - '0.047283' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:07 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:15 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/when_LegalFramework_ProceedingTypesService_call_returns_false/renders_index.yml b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/when_LegalFramework_ProceedingTypesService_call_returns_false/renders_index.yml index 16728ece5c..2298b8cd44 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/when_LegalFramework_ProceedingTypesService_call_returns_false/renders_index.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/create_POST_/providers/applications/_legal_aid_application_id/proceedings_types/with_proceedings/when_LegalFramework_ProceedingTypesService_call_returns_false/renders_index.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:07 GMT + - Tue, 20 Aug 2024 11:20:14 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - c0bfc7d759b53f808f0c41bd04fd2d9b + - 65f5783191f18c8dcd583b90f7a96f80 X-Runtime: - - '0.023316' + - '0.037486' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:07 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:14 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/back_link/when_the_applicant_s_address_used_address_lookup_service/redirects_to_the_address_lookup_page.yml b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/back_link/when_the_applicant_s_address_used_address_lookup_service/redirects_to_the_address_lookup_page.yml index 41491d21fd..f2d0a7ecbf 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/back_link/when_the_applicant_s_address_used_address_lookup_service/redirects_to_the_address_lookup_page.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/back_link/when_the_applicant_s_address_used_address_lookup_service/redirects_to_the_address_lookup_page.yml @@ -8,7 +8,7 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -19,7 +19,7 @@ http_interactions: message: '' headers: Date: - - Tue, 25 Jun 2024 11:24:09 GMT + - Tue, 20 Aug 2024 11:20:11 GMT Content-Type: - application/json;charset=UTF-8 Content-Length: @@ -47,18 +47,18 @@ http_interactions: string: "{\r\n \"error\" : {\r\n \"statuscode\" : 400,\r\n \"message\" : \"Requested postcode must contain a minimum of the sector plus 1 digit of the district e.g. SO1. Requested postcode was YO4B0LJ\"\r\n }\r\n}" - recorded_at: Tue, 25 Jun 2024 11:24:09 GMT + recorded_at: Tue, 20 Aug 2024 11:20:11 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -69,11 +69,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:10 GMT + - Tue, 20 Aug 2024 11:20:12 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '17643' Connection: - keep-alive X-Frame-Options: @@ -89,18 +89,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"8b3f691ad276799e255bfe066f630393" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 0e11f7752571255ef67824d2acb2e2f9 + - 50b3379627285c50889388e9ca833a67 X-Runtime: - - '0.022253' + - '0.030687' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:10 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMDUiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGRpc2NoYXJnZSBhbiBlbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJQQjAwMyIsIm1lYW5pbmciOiJDaGlsZCBhc3Nlc3NtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhc3Nlc3NtZW50IG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxQSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDIiLCJtZWFuaW5nIjoiVmFyaWF0aW9uIG9yIGRpc2NoYXJnZSB1bmRlciBzZWN0aW9uIDUgcHJvdGVjdGlvbiBmcm9tIGhhcmFzc21lbnQgYWN0IDE5OTciLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIHNlY3Rpb24gNSBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5NyB3aGVyZSB0aGUgcGFydGllcyBhcmUgYXNzb2NpYXRlZCBwZXJzb25zIChhcyBkZWZpbmVkIGJ5IFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NikuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk1IiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyIDExSi1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxMyIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKGNvbnRhY3QpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDQiLCJtZWFuaW5nIjoiRW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIgLSBleHRlbmQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBvciB0byBleHRlbmQgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwN0UiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzQSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZFIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTZBIiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTkiLCJtZWFuaW5nIjoiU3VwZXJ2aXNpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHN1cGVydmlzaW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d + recorded_at: Tue, 20 Aug 2024 11:20:12 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/back_link/when_the_applicant_s_address_used_manual_entry/redirects_to_the_manual_address_page_lookup_page.yml b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/back_link/when_the_applicant_s_address_used_manual_entry/redirects_to_the_manual_address_page_lookup_page.yml index ad23d1995e..e3155b9625 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/back_link/when_the_applicant_s_address_used_manual_entry/redirects_to_the_manual_address_page_lookup_page.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/back_link/when_the_applicant_s_address_used_manual_entry/redirects_to_the_manual_address_page_lookup_page.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:10 GMT + - Tue, 20 Aug 2024 11:20:11 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 72966fc64055a733949e811cd9940416 + - 8a3effb9fec9e6e3b2003b248a1642a4 X-Runtime: - - '0.025429' + - '0.087263' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:10 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:11 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/displays_no_errors.yml b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/displays_no_errors.yml index 86c7831e7e..ee95abf77c 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/displays_no_errors.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/displays_no_errors.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:08 GMT + - Tue, 20 Aug 2024 11:20:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 9566c6f3945ef2701b963e740ebb073e + - 8321f28cde4a5ca91d3626b47eda33e7 X-Runtime: - - '0.031737' + - '0.080791' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:08 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:10 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/does_not_displays_the_proceeding_types.yml b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/does_not_displays_the_proceeding_types.yml index 5bfb55c9aa..48eb09276d 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/does_not_displays_the_proceeding_types.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/does_not_displays_the_proceeding_types.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:08 GMT + - Tue, 20 Aug 2024 11:20:10 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - b3417c09933d74e9de67453476b3f3fc + - 10406ad72aff7ee64d765dab0053351d X-Runtime: - - '0.019656' + - '0.048917' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:08 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:10 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/returns_http_success.yml b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/returns_http_success.yml index 0e78ed0f67..417c8c2d7b 100644 --- a/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/returns_http_success.yml +++ b/spec/cassettes/Providers_ProceedingsTypesController/index_GET_/providers/applications/_legal_aid_application_id/proceedings_types/when_the_provider_is_authenticated/returns_http_success.yml @@ -1,16 +1,16 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA001","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: @@ -21,11 +21,11 @@ http_interactions: message: OK headers: Date: - - Tue, 25 Jun 2024 11:24:09 GMT + - Tue, 20 Aug 2024 11:20:09 GMT Content-Type: - application/json; charset=utf-8 Content-Length: - - '20445' + - '14969' Connection: - keep-alive X-Frame-Options: @@ -41,18 +41,18 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"6ccbcf5f8312d36792935ad5d9c3e228" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 00de7f4e00b47f4448e164e0fa9fb6ea + - 758beb3f59027d085f2bbcff81236304 X-Runtime: - - '0.031617' + - '0.102418' Strict-Transport-Security: - max-age=15724800; includeSubDomains body: encoding: ASCII-8BIT string: !binary |- - W3siY2Ntc19jb2RlIjoiUEIwNTEiLCJtZWFuaW5nIjoiUGxhY2VtZW50IG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwbGFjZW1lbnQgb3JkZXIgLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTMiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChjb250YWN0KSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTZFIiwibWVhbmluZyI6IkVuZm9yY2VtZW50IG9yZGVyK2PigJl0YWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21taXR0YWwgYW5kIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNSIsIm1lYW5pbmciOiJFbWVyZ2VuY3kgcHJvdGVjdGlvbiBvcmRlciAtIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gZGlzY2hhcmdlIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjkiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gY29udGFjdCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGgiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMjAiLCJtZWFuaW5nIjoiU3BlY2lmaWMgaXNzdWUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiUEIwMTIiLCJtZWFuaW5nIjoiUmVjb3Zlcnkgb2YgY2hpbGRyZW4gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmVjb3Zlcnkgb2YgYSBjaGlsZChyZW4pLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNFIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA2IiwibWVhbmluZyI6IlNlY3VyZSBhY2NvbW1vZGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzZWN1cmUgYWNjb21tb2RhdGlvbiBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyMSIsIm1lYW5pbmciOiJDb250YWN0IG9yZGVyIC0gdmFyeSBvciBkaXNjaGFyZ2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY29udGFjdCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE1QSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwNTIiLCJtZWFuaW5nIjoiU3BlY2lhbCBndWFyZGlhbnNoaXAgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIFNwZWNpYWwgR3VhcmRpYW5zaGlwIE9yZGVyIC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlBCMDIyIiwibWVhbmluZyI6IlJlc2lkZW5jZSAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHJlc2lkZW5jZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDAzRSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIFN0ZXBzIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA3IiwibWVhbmluZyI6IkZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBmb3JjZWQgbWFycmlhZ2UgcHJvdGVjdGlvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDIwIiwibWVhbmluZyI6IkZHTSBQcm90ZWN0aW9uIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJUbyBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIFByb3RlY3Rpb24gT3JkZXIgdW5kZXIgdGhlIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gQWN0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAyIiwibWVhbmluZyI6IlZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgdW5kZXIgc2VjdGlvbiA1IHByb3RlY3Rpb24gZnJvbSBoYXJhc3NtZW50IGFjdCAxOTk3IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhbiBvcmRlciB1bmRlciBzZWN0aW9uIDUgUHJvdGVjdGlvbiBmcm9tIEhhcmFzc21lbnQgQWN0IDE5OTcgd2hlcmUgdGhlIHBhcnRpZXMgYXJlIGFzc29jaWF0ZWQgcGVyc29ucyAoYXMgZGVmaW5lZCBieSBQYXJ0IElWIEZhbWlseSBMYXcgQWN0IDE5OTYpLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE0QSIsIm1lYW5pbmciOiJDQU8gcmVzaWRlbmNlLUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTciLCJtZWFuaW5nIjoiUmV2b2NhdGlvbiBlbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRFIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTNBIiwibWVhbmluZyI6IkNBTyBjb250YWN0LUFwcGVhbCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDU5IiwibWVhbmluZyI6IlN1cGVydmlzaW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzdXBlcnZpc2lvbiBvcmRlciIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiUEIwMzAiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIC0gcmVzaWRlbmNlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlBCMDU3IiwibWVhbmluZyI6IkNhcmUgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNhcmUgb3JkZXIiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAxOSIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiUEIwMDMiLCJtZWFuaW5nIjoiQ2hpbGQgYXNzZXNzbWVudCBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXNzZXNzbWVudCBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6dHJ1ZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDA0IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIC0gZXh0ZW5kIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3Igb3IgdG8gZXh0ZW5kIGFuIGVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjp0cnVlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktQQkxXIiwiY2Ntc19tYXR0ZXIiOiJTcGVjaWFsIENoaWxkcmVuIEFjdCJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTVFIiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAwNyIsIm1lYW5pbmciOiJDb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29udGFjdCB3aXRoIGEgY2hpbGQgaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI2IiwibWVhbmluZyI6IkVtZXJnZW5jeSBwcm90ZWN0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW1lcmdlbmN5IHByb3RlY3Rpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOnRydWUsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEEiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDIzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIgLSB2YXJ5IG9yIGRpc2NoYXJnZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGl2ZSBzdGVwcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJQQjAyNCIsIm1lYW5pbmciOiJTcGVjaWZpYyBpc3N1ZSBvcmRlciAtIHZhcnkgb3IgZGlzY2hhcmdlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlcyBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDI3IiwibWVhbmluZyI6IlBhcmVudGFsIHJlc3BvbnNpYmlsaXR5IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgcGFyZW50YWwgcmVzcG9uc2liaWxpdHkuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1BCTFciLCJjY21zX21hdHRlciI6IlNwZWNpYWwgQ2hpbGRyZW4gQWN0In0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlBCMDE0IiwibWVhbmluZyI6IkVuZCBjb250YWN0IHdpdGggYSBjaGlsZCBpbiBjYXJlIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB0ZXJtaW5hdGUgY29udGFjdCB3aXRoIGEgY2hpbGQvY2hpbGRyZW4gaW4gY2FyZS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLUEJMVyIsImNjbXNfbWF0dGVyIjoiU3BlY2lhbCBDaGlsZHJlbiBBY3QifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In1d - recorded_at: Tue, 25 Jun 2024 11:24:09 GMT + W3siY2Ntc19jb2RlIjoiREEwMDUiLCJtZWFuaW5nIjoiT2NjdXBhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIG9jY3VwYXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDA0RSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk5RSIsIm1lYW5pbmciOiJBbWQgZW5mb3JjZW1lbnQtYnJlYWNoLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3QSIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIHRoZSByZXZvY2F0aW9uIG9mIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NUEiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDgiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgU3BlY2lmaWMgSXNzdWVzIE9yZC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwNiIsIm1lYW5pbmciOiJFeHRlbmQsIHZhcmlhdGlvbiBvciBkaXNjaGFyZ2UgLSBQYXJ0IElWIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byBleHRlbmQsIHZhcnkgb3IgZGlzY2hhcmdlIGFuIG9yZGVyIHVuZGVyIFBhcnQgSVYgRmFtaWx5IExhdyBBY3QgMTk5NiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJEQTAyMCIsIm1lYW5pbmciOiJGR00gUHJvdGVjdGlvbiBPcmRlciIsImRlc2NyaXB0aW9uIjoiVG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBQcm90ZWN0aW9uIE9yZGVyIHVuZGVyIHRoZSBGZW1hbGUgR2VuaXRhbCBNdXRpbGF0aW9uIEFjdC4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UxMDFBIiwibWVhbmluZyI6IkNvbXBlbnNhdGlvbi1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAwRSIsIm1lYW5pbmciOiJCcmVhY2ggZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uLCBmb2xsb3dpbmcgYnJlYWNoLCBmb3IgYW4gYW1lbmRtZW50IHRvIGFuIGVuZm9yY2VtZW50IG9yZGVyIG9yIGZvciBhIGZ1cnRoZXIgZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNEEiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NkUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIrY+KAmXRhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbW1pdHRhbCBhbmQgZm9yIGFuIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIENoaWxkcmVuIEFjdCAxOTg5LiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3QSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMTQiLCJtZWFuaW5nIjoiQ2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIChyZXNpZGVuY2UpIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA0IiwibWVhbmluZyI6Ik5vbi1tb2xlc3RhdGlvbiBvcmRlciIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgbm9uLW1vbGVzdGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMyIsIm1lYW5pbmciOiJIYXJhc3NtZW50IC0gaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgaW4gYW4gYWN0aW9uIGZvciBhbiBpbmp1bmN0aW9uIHVuZGVyIHNlY3Rpb24gMyBQcm90ZWN0aW9uIGZyb20gSGFyYXNzbWVudCBBY3QgMTk5Ny4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNBIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDdFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFByb2hpYiBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBTcGVjaWZpYyBJc3N1ZXMgT3JkLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5NyIsIm1lYW5pbmciOiJSZXZvY2F0aW9uIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2RSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwMyIsIm1lYW5pbmciOiJQcm9oaWJpdGVkIHN0ZXBzIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0UiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtRW5mb3JjZW1lbnQiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0QSIsIm1lYW5pbmciOiJTcGVjaWZpYyBJc3N1ZSBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMTAxRSIsIm1lYW5pbmciOiJDb21wZW5zYXRpb24tRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBjb21wZW5zYXRpb24gZm9yIGZpbmFuY2lhbCBsb3NzIHVuZGVyIHNlY3Rpb24gMTFPIENoaWxkcmVuIEFjdCAxOTg5LiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsInNjYV9jb3JlIjpmYWxzZSwic2NhX3JlbGF0ZWQiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfY2F0ZWdvcnlfbGF3X2NvZGUiOiJNQVQiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwM0UiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1FbmZvcmNlbWVudC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJzY2FfY29yZSI6ZmFsc2UsInNjYV9yZWxhdGVkIjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDE1RSIsIm1lYW5pbmciOiJWYXJ5IENBTyBjb250YWN0LUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5L2Rpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwic2NhX2NvcmUiOmZhbHNlLCJzY2FfcmVsYXRlZCI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19jYXRlZ29yeV9sYXdfY29kZSI6Ik1BVCIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifV0= + recorded_at: Tue, 20 Aug 2024 11:20:09 GMT recorded_with: VCR 6.2.0 diff --git a/spec/cassettes/SubstantiveDefaultsController/POST_/providers/applications/_legal_aid_application_id/substantive_defaults/_proceeding_id/when_the_provider_is_authenticated/when_the_Continue_button_is_pressed/when_the_application_is_a_Special_Childrens_Act_application/redirects_to_next_page.yml b/spec/cassettes/SubstantiveDefaultsController/POST_/providers/applications/_legal_aid_application_id/substantive_defaults/_proceeding_id/when_the_provider_is_authenticated/when_the_Continue_button_is_pressed/when_the_application_is_a_Special_Childrens_Act_application/redirects_to_next_page.yml new file mode 100644 index 0000000000..d33868514c --- /dev/null +++ b/spec/cassettes/SubstantiveDefaultsController/POST_/providers/applications/_legal_aid_application_id/substantive_defaults/_proceeding_id/when_the_provider_is_authenticated/when_the_Continue_button_is_pressed/when_the_application_is_a_Special_Childrens_Act_application/redirects_to_next_page.yml @@ -0,0 +1,60 @@ +--- +http_interactions: +- request: + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults + body: + encoding: UTF-8 + string: '{"proceeding_type_ccms_code":"PB059","delegated_functions_used":false,"client_involvement_type":"A"}' + headers: + Content-Type: + - application/json + User-Agent: + - Faraday v2.10.1 + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 20 Aug 2024 11:18:00 GMT + Content-Type: + - application/json; charset=utf-8 + Content-Length: + - '434' + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - '0' + X-Content-Type-Options: + - nosniff + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"9d7f8483a4efb1204e25e85e98d53bd5" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - '0692865461e9d2117ef4c99210572b69' + X-Runtime: + - '0.118781' + Strict-Transport-Security: + - max-age=15724800; includeSubDomains + body: + encoding: UTF-8 + string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"PB059","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full + Representation","stage":8},"default_scope":{"code":"FM062","meaning":"Final + hearing","description":"Limited to all steps up to and including final hearing + and any action necessary to implement (but not enforce) the order.","additional_params":[]}}' + recorded_at: Tue, 20 Aug 2024 11:18:00 GMT +recorded_with: VCR 6.2.0 From efa0fc36ce603590db700515d2901e3d447d3055 Mon Sep 17 00:00:00 2001 From: ColinBruce Date: Tue, 20 Aug 2024 12:56:04 +0100 Subject: [PATCH 5/5] AP-5235: Re-record feature cassettes that use the old endpoint Delete any cassettes that mentioned the old endpoint and then re-record, some may be deleted and not replaced if features have been renamed or removed since the original recording --- ...ceed_from_Delegated_Function_date_view.yml | 601 ++-- ...s_the_application_using_address_lookup.yml | 581 ++-- ...dress_lookup_with_building_number_name.yml | 272 +- ...dress_lookup_with_multiple_proceedings.yml | 2743 +++++++---------- ...s_the_application_using_manual_address.yml | 1120 +++---- ...he_applicant_does_not_receive_benefits.yml | 581 ++-- ...e_that_the_applicant_receives_benefits.yml | 601 ++-- ...16_on_earliest_delegated_function_date.yml | 601 ++-- .../If_I_change_the_copied_from_Yes_to_No.yml | 588 ++-- ..._I_change_the_linked_from_Family_to_No.yml | 588 ++-- ..._type_from_the_check_your_answers_page.yml | 568 ++-- ...o_full_representation_from_the_default.yml | 1022 ------ ...ose_not_to_copy_another_case_s_details.yml | 195 -- ...ceed_from_Delegated_Function_date_view.yml | 524 ---- ...s_the_application_using_address_lookup.yml | 438 --- ...dress_lookup_with_multiple_proceedings.yml | 1491 --------- ...s_the_application_using_manual_address.yml | 634 ---- ...an_applicant_does_not_receive_benefits.yml | 438 --- ...he_applicant_does_not_receive_benefits.yml | 438 --- ...e_that_the_applicant_receives_benefits.yml | 438 --- ..._to_override_emergency_cost_limitation.yml | 601 ++-- ...mplete_flow_reversion_with_back_button.yml | 254 +- ...ose_not_to_link_another_case_s_details.yml | 306 -- ...e_that_the_applicant_receives_benefits.yml | 581 ++-- ...at_time_of_earliest_delegated_function.yml | 617 ++-- ...ication_for_applicant_that_is_under_18.yml | 597 ++-- ..._application_with_multiple_proceedings.yml | 1356 ++++---- ...cope_limitations_should_not_be_removed.yml | 1675 +++++----- ...lear_proceeding_on_the_proceeding_page.yml | 296 +- ...when_invalid_proceeding_search_entered.yml | 333 +- ...ication_for_applicant_that_is_under_18.yml | 581 ++-- ...route_to_the_list_of_proceedings_first.yml | 868 +++--- ...a_different_address_from_the_applicant.yml | 867 ------ ...h_an_address_shared_with_the_applicant.yml | 802 ----- ...a_different_address_from_the_applicant.yml | 848 ----- 35 files changed, 7295 insertions(+), 17749 deletions(-) delete mode 100644 features/cassettes/Choosing_full_representation_level_of_service_in_proceeding_loop/When_the_provider_changes_the_level_of_service_to_full_representation_from_the_default.yml delete mode 100644 features/cassettes/Copy_a_case_s_applicable_details/I_choose_not_to_copy_another_case_s_details.yml delete mode 100644 features/cassettes/Create_application/Allows_return_to_and_proceed_from_Delegated_Function_date_view.yml delete mode 100644 features/cassettes/Create_application/Completes_the_application_using_address_lookup.yml delete mode 100644 features/cassettes/Create_application/Completes_the_application_using_address_lookup_with_multiple_proceedings.yml delete mode 100644 features/cassettes/Create_application/Completes_the_application_using_manual_address.yml delete mode 100644 features/cassettes/Create_application/I_am_instructed_to_use_CCMS_on_the_passported_journey_with_an_applicant_does_not_receive_benefits.yml delete mode 100644 features/cassettes/Create_application/I_can_see_that_the_applicant_does_not_receive_benefits.yml delete mode 100644 features/cassettes/Create_application/I_can_see_that_the_applicant_receives_benefits.yml delete mode 100644 features/cassettes/Linking_one_application_to_another_application/I_choose_not_to_link_another_case_s_details.yml delete mode 100644 features/cassettes/partner_means_assessment_with_a_different_address/I_am_able_to_add_a_partner_with_a_different_address_from_the_applicant.yml delete mode 100644 features/cassettes/partner_means_assessment_with_a_shared_address/I_am_able_to_add_a_partner_with_an_address_shared_with_the_applicant.yml delete mode 100644 features/cassettes/partner_means_assessment_with_an_unknown_address/I_am_able_to_add_a_partner_with_a_different_address_from_the_applicant.yml diff --git a/features/cassettes/Applicant_details/Allows_return_to_and_proceed_from_Delegated_Function_date_view.yml b/features/cassettes/Applicant_details/Allows_return_to_and_proceed_from_Delegated_Function_date_view.yml index 231c3449ee..984fc4e926 100644 --- a/features/cassettes/Applicant_details/Allows_return_to_and_proceed_from_Delegated_Function_date_view.yml +++ b/features/cassettes/Applicant_details/Allows_return_to_and_proceed_from_Delegated_Function_date_view.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:21 GMT + - Tue, 20 Aug 2024 12:00:00 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:05:21 GMT + recorded_at: Tue, 20 Aug 2024 12:00:00 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:22 GMT + - Tue, 20 Aug 2024 12:00:00 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - e9cb7144a16ed3526fa5cc262031d740 + - b73d19068e3e2146810ba13d219df5b9 x-runtime: - - '0.021972' + - '0.028546' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:05:22 GMT + recorded_at: Tue, 20 Aug 2024 12:00:00 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:23 GMT + - Tue, 20 Aug 2024 12:00:02 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - d86b0d08ba1b204db3f3bb1a4ec1b8ed + - cd78e6a2f0b5d35f82c4de8c1c1e6ab3 x-runtime: - - '0.020645' + - '0.027373' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:05:23 GMT + recorded_at: Tue, 20 Aug 2024 12:00:02 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:24 GMT + - Tue, 20 Aug 2024 12:00:02 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c562ba6f00b1dffda473a2a7eedce827 + - 96a88fabd387597129bfcfbe19c7be5e x-runtime: - - '0.011240' + - '0.018744' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:05:24 GMT + recorded_at: Tue, 20 Aug 2024 12:00:02 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:25 GMT + - Tue, 20 Aug 2024 12:00:03 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - af58e1fb1edf155430d699075474699b + - 83892810c196172f8a738c755e73ed46 x-runtime: - - '0.004377' + - '0.003869' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:05:25 GMT + recorded_at: Tue, 20 Aug 2024 12:00:03 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:25 GMT + - Tue, 20 Aug 2024 12:00:04 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 5efe33c2189df97c610dcdf87780c926 + - 4ac6ff2c5214ef7348f75316aa4098d7 x-runtime: - - '0.004560' + - '0.004803' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:05:25 GMT + recorded_at: Tue, 20 Aug 2024 12:00:04 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:26 GMT + - Tue, 20 Aug 2024 12:00:05 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - d1793cf71e5e8ee29af0cd0fe44452ed + - 9031ec313e4b3bd95d1f05749b3a5d42 x-runtime: - - '0.006633' + - '0.006559' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -790,7 +723,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:05:26 GMT + recorded_at: Tue, 20 Aug 2024 12:00:05 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -801,14 +734,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:27 GMT + - Tue, 20 Aug 2024 12:00:06 GMT content-type: - application/json; charset=utf-8 content-length: @@ -832,9 +765,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - bc09dfd3890fa49abb16b52ffaa84584 + - a10f19bf2b0b94dfb441a152e6bbf14b x-runtime: - - '0.007542' + - '0.007364' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -844,7 +777,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:05:27 GMT + recorded_at: Tue, 20 Aug 2024 12:00:06 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -855,14 +788,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:27 GMT + - Tue, 20 Aug 2024 12:00:06 GMT content-type: - application/json; charset=utf-8 content-length: @@ -886,9 +819,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 60f975729fa5ac1d50bf592940b4f093 + - 9471f76aa724a789cf316ad312dc72ce x-runtime: - - '0.008284' + - '0.009791' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -901,7 +834,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:05:27 GMT + recorded_at: Tue, 20 Aug 2024 12:00:06 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -912,14 +845,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:05:28 GMT + - Tue, 20 Aug 2024 12:00:07 GMT content-type: - application/json; charset=utf-8 content-length: @@ -943,9 +876,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 472d7c13f0b45bcb351c344d034bebb5 + - f0cee79e824bfd22dd593463949abf8e x-runtime: - - '0.006840' + - '0.009231' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -958,5 +891,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:05:28 GMT + recorded_at: Tue, 20 Aug 2024 12:00:07 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup.yml b/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup.yml index 3e9ef4c12b..c74f65d5bf 100644 --- a/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup.yml +++ b/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:27 GMT + - Tue, 20 Aug 2024 11:57:57 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:03:27 GMT + recorded_at: Tue, 20 Aug 2024 11:57:57 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:28 GMT + - Tue, 20 Aug 2024 11:57:58 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 8845586a183cb7ea21e9e85171ede732 + - b828a2c96751b8f90a5f17af0dfe1980 x-runtime: - - '0.030215' + - '0.033403' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:28 GMT + recorded_at: Tue, 20 Aug 2024 11:57:58 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:30 GMT + - Tue, 20 Aug 2024 11:58:00 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - e84712b2565b1eaf00221d3cd481d05f + - '08bd029a1da2838ea75b2abcfe2c2391' x-runtime: - - '0.021620' + - '0.026051' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:29 GMT + recorded_at: Tue, 20 Aug 2024 11:58:00 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:30 GMT + - Tue, 20 Aug 2024 11:58:00 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 0f6ee6b4b41be01e9be0b1949aa61011 + - 976d8c49cbcd8624a94adb4d1d39502e x-runtime: - - '0.011125' + - '0.017003' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:03:30 GMT + recorded_at: Tue, 20 Aug 2024 11:58:00 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:31 GMT + - Tue, 20 Aug 2024 11:58:01 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 66bcf43af2fe5b8acfe03481572ef9f4 + - bdd9f098f23d14c0de9cc2804cf8410f x-runtime: - - '0.005754' + - '0.003955' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:31 GMT + recorded_at: Tue, 20 Aug 2024 11:58:01 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:31 GMT + - Tue, 20 Aug 2024 11:58:01 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6ff05b4ec66c0d007c6a3c760adaed86 + - d9e4a44a93b19db999249d9fd79076db x-runtime: - - '0.004285' + - '0.004290' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:31 GMT + recorded_at: Tue, 20 Aug 2024 11:58:01 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:32 GMT + - Tue, 20 Aug 2024 11:58:02 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 37dffb24dfaec446d086602e24d59fc5 + - e70db7e92361ab321836badb9340f132 x-runtime: - - '0.007121' + - '0.009983' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -793,7 +726,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:32 GMT + recorded_at: Tue, 20 Aug 2024 11:58:02 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -804,14 +737,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:33 GMT + - Tue, 20 Aug 2024 11:58:03 GMT content-type: - application/json; charset=utf-8 content-length: @@ -835,9 +768,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 699a3fa1f96799e5c866877da97c729f + - 92fecd645a31943e87fa8dcd25f882d1 x-runtime: - - '0.008213' + - '0.010763' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -850,5 +783,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:33 GMT + recorded_at: Tue, 20 Aug 2024 11:58:03 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup_with_building_number_name.yml b/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup_with_building_number_name.yml index f054d1b088..f70e3c9117 100644 --- a/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup_with_building_number_name.yml +++ b/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup_with_building_number_name.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:45 GMT + - Tue, 20 Aug 2024 11:58:15 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:03:44 GMT + recorded_at: Tue, 20 Aug 2024 11:58:15 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:45 GMT + - Tue, 20 Aug 2024 11:58:15 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,185 +171,152 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - b577797598a26b94719e2a7067e88a96 + - 5e57c26a57f603264d535aaa80f803d0 x-runtime: - - '0.026161' + - '0.028651' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:45 GMT + recorded_at: Tue, 20 Aug 2024 11:58:15 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup_with_multiple_proceedings.yml b/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup_with_multiple_proceedings.yml index c80fc2a30f..f6e7a38959 100644 --- a/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup_with_multiple_proceedings.yml +++ b/features/cassettes/Applicant_details/Completes_the_application_using_address_lookup_with_multiple_proceedings.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:02:54 GMT + - Tue, 20 Aug 2024 11:57:25 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:02:53 GMT + recorded_at: Tue, 20 Aug 2024 11:57:25 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:02:55 GMT + - Tue, 20 Aug 2024 11:57:26 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6249722f93178b12020c95829f79987f + - b83163e4c1a8bd8181e7434c055e1710 x-runtime: - - '0.062918' + - '0.130097' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:02:55 GMT + recorded_at: Tue, 20 Aug 2024 11:57:26 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:02:56 GMT + - Tue, 20 Aug 2024 11:57:27 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 0a7b43aff2d891a443de3ed3a9ad116e + - e77e7ef84be9887e3f9b692b2cfab47a x-runtime: - - '0.022252' + - '0.028025' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:02:56 GMT + recorded_at: Tue, 20 Aug 2024 11:57:27 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:02:56 GMT + - Tue, 20 Aug 2024 11:57:27 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - e1d30e8fdc67731c6d64a05f80d5c868 + - 904cbf01557e34b0590e0dc688034121 x-runtime: - - '0.051523' + - '0.038481' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,29 +565,29 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:02:56 GMT + recorded_at: Tue, 20 Aug 2024 11:57:27 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA004","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:02:58 GMT + - Tue, 20 Aug 2024 11:57:28 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '15048' connection: - keep-alive x-frame-options: @@ -670,209 +603,159 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"addebffb1ccfb2ce89909f324f0dbddc" cache-control: - max-age=0, private, must-revalidate x-request-id: - - fd99e754715981c26b466b1191cce439 + - 989868d0ae3d206088f5b88b29346c8a x-runtime: - - '0.021647' + - '0.055883' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:02:57 GMT + recorded_at: Tue, 20 Aug 2024 11:57:28 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA004","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:00 GMT + - Tue, 20 Aug 2024 11:57:30 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '15048' connection: - keep-alive x-frame-options: @@ -888,187 +771,137 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"addebffb1ccfb2ce89909f324f0dbddc" cache-control: - max-age=0, private, must-revalidate x-request-id: - - cc94c652ce5960b9d808fc69c871dc28 + - ff48d530bf289db1e13e49d62ca0dd92 x-runtime: - - '0.039545' + - '0.051593' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:00 GMT + recorded_at: Tue, 20 Aug 2024 11:57:30 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA005 @@ -1079,14 +912,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:00 GMT + - Tue, 20 Aug 2024 11:57:30 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1110,9 +943,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c835922515a16bf5d898ae800a30e58a + - eaaea2b6a4ba1313c2ca4d92a3685fd6 x-runtime: - - '0.010834' + - '0.016560' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1130,29 +963,29 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:03:00 GMT + recorded_at: Tue, 20 Aug 2024 11:57:30 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:01 GMT + - Tue, 20 Aug 2024 11:57:32 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -1168,209 +1001,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - ad795308fe86fdf402a83ff213f10bce + - 91d7dbf77b18f726a47c31fe741d8580 x-runtime: - - '0.020237' + - '0.043547' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:01 GMT + recorded_at: Tue, 20 Aug 2024 11:57:32 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:03 GMT + - Tue, 20 Aug 2024 11:57:33 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -1386,187 +1186,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 30fd2562abd0ecb055c293128502d0e0 + - 8958083e7d846a24f55293fd7db6b2b4 x-runtime: - - '0.019914' + - '0.030816' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:03 GMT + recorded_at: Tue, 20 Aug 2024 11:57:33 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA020 @@ -1577,14 +1344,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:03 GMT + - Tue, 20 Aug 2024 11:57:33 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1608,9 +1375,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 10741a8708b1ffe634d72098496551a9 + - e3b7e7d7ccc0abeed6252b2eda69f2e8 x-runtime: - - '0.011776' + - '0.029202' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1629,29 +1396,29 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:03:03 GMT + recorded_at: Tue, 20 Aug 2024 11:57:33 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA020","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:04 GMT + - Tue, 20 Aug 2024 11:57:34 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '14988' connection: - keep-alive x-frame-options: @@ -1667,209 +1434,158 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"2171b2dd3e6d0fa8ecf583014488eba6" cache-control: - max-age=0, private, must-revalidate x-request-id: - - b332c3b0d9e1594b84a70e557fe236a5 + - 4169eda68e64f83108be79d7c229a58d x-runtime: - - '0.020212' + - '0.040709' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:04 GMT + recorded_at: Tue, 20 Aug 2024 11:57:34 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA020","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:05 GMT + - Tue, 20 Aug 2024 11:57:36 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '14988' connection: - keep-alive x-frame-options: @@ -1885,187 +1601,136 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"2171b2dd3e6d0fa8ecf583014488eba6" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 76c6bdf30066b43d9fa9974f356ca132 + - dd88e63c9883aff7a6a281c85d81e069 x-runtime: - - '0.021272' + - '0.051875' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:05 GMT + recorded_at: Tue, 20 Aug 2024 11:57:36 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA005 @@ -2076,14 +1741,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:05 GMT + - Tue, 20 Aug 2024 11:57:36 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2107,9 +1772,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 2fbc842ba279e101d09a13ecc6c2d0c9 + - eef37aa846e3ebec9129d6fba4ea3871 x-runtime: - - '0.010694' + - '0.043131' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2127,29 +1792,29 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:03:05 GMT + recorded_at: Tue, 20 Aug 2024 11:57:36 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA020,DA005","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:06 GMT + - Tue, 20 Aug 2024 11:57:37 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '14684' connection: - keep-alive x-frame-options: @@ -2165,209 +1830,156 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"1ac5cd18459b83c79a025a5f6888d9d3" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 7ab29e2588b98fb1ea3f33929e0a81f4 + - de128663400e1c66661ce7881b5c2e5e x-runtime: - - '0.019776' + - '0.040769' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:06 GMT + recorded_at: Tue, 20 Aug 2024 11:57:37 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA020,DA005","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:08 GMT + - Tue, 20 Aug 2024 11:57:39 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '14684' connection: - keep-alive x-frame-options: @@ -2383,187 +1995,134 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"1ac5cd18459b83c79a025a5f6888d9d3" cache-control: - max-age=0, private, must-revalidate x-request-id: - - e211960d577d10bbaca09551fd4c69e0 + - dc754c5a460d1c9366bab74b19d33592 x-runtime: - - '0.024563' + - '0.037384' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:08 GMT + recorded_at: Tue, 20 Aug 2024 11:57:38 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA003 @@ -2574,14 +2133,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:08 GMT + - Tue, 20 Aug 2024 11:57:39 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2605,9 +2164,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 3f4ae31f899f88aeaad634144b61b52b + - 82a27fa3794fbffea87d128b3d76f3c7 x-runtime: - - '0.012126' + - '0.012339' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2626,7 +2185,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:03:08 GMT + recorded_at: Tue, 20 Aug 2024 11:57:39 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA020 @@ -2637,14 +2196,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:09 GMT + - Tue, 20 Aug 2024 11:57:40 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2668,9 +2227,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 73123d91cf43b6141bf2320a30ad73f4 + - 59fcd1773410d26b5123171f20c16786 x-runtime: - - '0.004145' + - '0.003871' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2678,7 +2237,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:09 GMT + recorded_at: Tue, 20 Aug 2024 11:57:40 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA020 @@ -2689,14 +2248,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:10 GMT + - Tue, 20 Aug 2024 11:57:41 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2720,9 +2279,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 06b7ca4b860a40acc845a80614b8eba5 + - 954d6aeec0a2917ed4bd991b98cd13da x-runtime: - - '0.003897' + - '0.005423' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2730,7 +2289,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:10 GMT + recorded_at: Tue, 20 Aug 2024 11:57:40 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -2741,14 +2300,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:11 GMT + - Tue, 20 Aug 2024 11:57:42 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2772,9 +2331,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 51c2c7c9d8a257d06656fc1347c5d955 + - ceba03afe1d7141b88ccabf659f32ff0 x-runtime: - - '0.009740' + - '0.057713' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2784,7 +2343,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:11 GMT + recorded_at: Tue, 20 Aug 2024 11:57:42 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -2795,14 +2354,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:12 GMT + - Tue, 20 Aug 2024 11:57:42 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2826,9 +2385,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 8bb6ec36692a2ba3556d5a34efeaa8ea + - 3c7b3881e44dfcbc6f018a602746c1aa x-runtime: - - '0.008299' + - '0.007293' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2838,7 +2397,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:12 GMT + recorded_at: Tue, 20 Aug 2024 11:57:42 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -2849,14 +2408,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:12 GMT + - Tue, 20 Aug 2024 11:57:43 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2880,9 +2439,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 5d8e9edb3df720c4deb021cea85c5e7f + - b4cfc0a66042951696418cdd629f3bf1 x-runtime: - - '0.007935' + - '0.007241' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2895,7 +2454,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:12 GMT + recorded_at: Tue, 20 Aug 2024 11:57:42 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -2906,14 +2465,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:13 GMT + - Tue, 20 Aug 2024 11:57:43 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2937,9 +2496,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 8e4be564839bfe7e2c74b4748291ea57 + - 991f10dc5e37a30c9e5341920e03e6e8 x-runtime: - - '0.007677' + - '0.011993' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2952,7 +2511,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:13 GMT + recorded_at: Tue, 20 Aug 2024 11:57:43 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA005 @@ -2963,14 +2522,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:13 GMT + - Tue, 20 Aug 2024 11:57:44 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2994,9 +2553,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 18807dd6f20d38f89bc3321660677e88 + - 44f59b147fb51f667f5018bc5258472e x-runtime: - - '0.004716' + - '0.006124' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3004,7 +2563,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:13 GMT + recorded_at: Tue, 20 Aug 2024 11:57:43 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA005 @@ -3015,14 +2574,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:14 GMT + - Tue, 20 Aug 2024 11:57:44 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3046,9 +2605,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - b93a47ab345333d9ccfa23843b048179 + - 02e996fc5996a420a2b0b7a96531f5ab x-runtime: - - '0.004522' + - '0.004017' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3056,7 +2615,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:14 GMT + recorded_at: Tue, 20 Aug 2024 11:57:44 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -3067,14 +2626,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:15 GMT + - Tue, 20 Aug 2024 11:57:46 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3098,9 +2657,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - dc72d0290378eed5e0a2729a3c9679e2 + - 53deaba9b8e92c93b20468fe852746e7 x-runtime: - - '0.010229' + - '0.010615' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3109,7 +2668,7 @@ http_interactions: Representation","stage":8},"default_scope":{"code":"CV118","meaning":"Hearing","description":"Limited to all steps up to and including the hearing on [see additional limitation notes]","additional_params":[{"name":"hearing_date","type":"date","mandatory":true}]}}' - recorded_at: Tue, 02 Jul 2024 09:03:15 GMT + recorded_at: Tue, 20 Aug 2024 11:57:45 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -3120,14 +2679,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:16 GMT + - Tue, 20 Aug 2024 11:57:46 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3151,9 +2710,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 7bac25e7814b527f96c6f709ed343fdf + - c47606761ef5330d76b21777b1026980 x-runtime: - - '0.010906' + - '0.021418' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3162,7 +2721,7 @@ http_interactions: Representation","stage":8},"default_scope":{"code":"CV118","meaning":"Hearing","description":"Limited to all steps up to and including the hearing on [see additional limitation notes]","additional_params":[{"name":"hearing_date","type":"date","mandatory":true}]}}' - recorded_at: Tue, 02 Jul 2024 09:03:16 GMT + recorded_at: Tue, 20 Aug 2024 11:57:46 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -3173,14 +2732,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:17 GMT + - Tue, 20 Aug 2024 11:57:47 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3204,9 +2763,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 90d4e90d0dc722b1ebbe32e24775effa + - 5142fe21f9bf929b61552feee9a4b753 x-runtime: - - '0.007720' + - '0.010201' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3219,7 +2778,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:17 GMT + recorded_at: Tue, 20 Aug 2024 11:57:46 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -3230,14 +2789,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:17 GMT + - Tue, 20 Aug 2024 11:57:47 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3261,9 +2820,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - acdeb1a10bdd96edf3a15afa080fd0b4 + - 8eb036b0fe99b3c232e7d3a3c26e3c12 x-runtime: - - '0.008160' + - '0.010877' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3276,7 +2835,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:17 GMT + recorded_at: Tue, 20 Aug 2024 11:57:47 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA003 @@ -3287,14 +2846,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:18 GMT + - Tue, 20 Aug 2024 11:57:47 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3318,9 +2877,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c676775b8e500506760472692eea975d + - eeff4b35d67da17b1b11df733b4d0646 x-runtime: - - '0.004911' + - '0.003851' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3328,7 +2887,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:17 GMT + recorded_at: Tue, 20 Aug 2024 11:57:47 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA003 @@ -3339,14 +2898,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:18 GMT + - Tue, 20 Aug 2024 11:57:48 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3370,9 +2929,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c7ba8459ddb4fe6b573bbc1d5a4b56f9 + - 1c2640a3bea53409b6ffd31ca542708d x-runtime: - - '0.004463' + - '0.003210' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3380,7 +2939,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:18 GMT + recorded_at: Tue, 20 Aug 2024 11:57:48 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -3391,14 +2950,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:19 GMT + - Tue, 20 Aug 2024 11:57:49 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3422,9 +2981,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 29160cc3c71494969b7fd1317ca24f37 + - b8614e591429e0c85a8c8c9357ec21f0 x-runtime: - - '0.007759' + - '0.007519' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3437,7 +2996,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:19 GMT + recorded_at: Tue, 20 Aug 2024 11:57:49 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -3448,14 +3007,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:20 GMT + - Tue, 20 Aug 2024 11:57:50 GMT content-type: - application/json; charset=utf-8 content-length: @@ -3479,9 +3038,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 51622e3ca7c1b3fe7c5b5ef7ddb4b7cb + - 6bfa3dc663ea155e65e5e673ae3d7b69 x-runtime: - - '0.007161' + - '0.009669' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -3494,5 +3053,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:20 GMT + recorded_at: Tue, 20 Aug 2024 11:57:49 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Applicant_details/Completes_the_application_using_manual_address.yml b/features/cassettes/Applicant_details/Completes_the_application_using_manual_address.yml index aa2498510d..41e78ba3f9 100644 --- a/features/cassettes/Applicant_details/Completes_the_application_using_manual_address.yml +++ b/features/cassettes/Applicant_details/Completes_the_application_using_manual_address.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:49 GMT + - Tue, 20 Aug 2024 11:58:20 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,31 +37,31 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=XX11XX\",\r\n \ \"query\" : \"postcode=XX11XX\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 0,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n }\r\n}" - recorded_at: Tue, 02 Jul 2024 09:03:49 GMT + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n }\r\n}" + recorded_at: Tue, 20 Aug 2024 11:58:20 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:51 GMT + - Tue, 20 Aug 2024 11:58:21 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -77,209 +77,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 60204bbfc2c00c3af5535c92ae6701c3 + - d112c344d1f074fb02690ef1fadb72ac x-runtime: - - '0.027340' + - '0.026143' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:51 GMT + recorded_at: Tue, 20 Aug 2024 11:58:21 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:52 GMT + - Tue, 20 Aug 2024 11:58:23 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -295,187 +262,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 5130e4d988a2c775c632a14209c35f4d + - e8882750c5db392d5803201691e74f28 x-runtime: - - '0.021284' + - '0.026364' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:52 GMT + recorded_at: Tue, 20 Aug 2024 11:58:23 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -486,14 +420,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:52 GMT + - Tue, 20 Aug 2024 11:58:23 GMT content-type: - application/json; charset=utf-8 content-length: @@ -517,9 +451,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 4eb3402419e9277ecc75872185222d19 + - 77e408142d2d5fbbf5e3302368f8443f x-runtime: - - '0.010257' + - '0.010045' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -537,29 +471,29 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:03:52 GMT + recorded_at: Tue, 20 Aug 2024 11:58:23 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA004","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:53 GMT + - Tue, 20 Aug 2024 11:58:24 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '15048' connection: - keep-alive x-frame-options: @@ -575,209 +509,159 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"addebffb1ccfb2ce89909f324f0dbddc" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 59ab36ffb3f334e6ab17c6030261790f + - '0635934b0bec75e1c9db222f97e60852' x-runtime: - - '0.020930' + - '0.040844' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:53 GMT + recorded_at: Tue, 20 Aug 2024 11:58:24 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA004","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:54 GMT + - Tue, 20 Aug 2024 11:58:25 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '15048' connection: - keep-alive x-frame-options: @@ -793,187 +677,137 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"addebffb1ccfb2ce89909f324f0dbddc" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 06cdc08a32119c32f5195137ee3deb5d + - ffd717355d59f596fba18329732389ee x-runtime: - - '0.024302' + - '0.038623' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:03:54 GMT + recorded_at: Tue, 20 Aug 2024 11:58:25 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE014 @@ -984,14 +818,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:55 GMT + - Tue, 20 Aug 2024 11:58:25 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1015,9 +849,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 27bb1f44c98e58c1af0ec6b4897731de + - aea4421a7a2502aee4d1c864ee50e96d x-runtime: - - '0.010034' + - '0.011691' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1036,7 +870,7 @@ http_interactions: representation on the return date."}},"service_levels":[{"level":1,"name":"Family Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Tue, 02 Jul 2024 09:03:55 GMT + recorded_at: Tue, 20 Aug 2024 11:58:25 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -1047,14 +881,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:56 GMT + - Tue, 20 Aug 2024 11:58:26 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1078,9 +912,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - f1e75f8fcf0153f40c7fecc6ca2fd234 + - 0dc43274b3b2eeb272fb3fa8f0bec741 x-runtime: - - '0.003756' + - '0.003886' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1088,7 +922,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:55 GMT + recorded_at: Tue, 20 Aug 2024 11:58:26 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -1099,14 +933,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:56 GMT + - Tue, 20 Aug 2024 11:58:27 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1130,9 +964,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - fa7052fe5330131aa73f2b98ab80caad + - 2c04c54ab330479d3ba72627981e1a58 x-runtime: - - '0.004718' + - '0.003029' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1140,7 +974,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:56 GMT + recorded_at: Tue, 20 Aug 2024 11:58:27 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1151,14 +985,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:57 GMT + - Tue, 20 Aug 2024 11:58:28 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1182,9 +1016,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - adf9892341f5c4659f0602db1bfc67df + - bdbff98d0ffec04b7acd9b0424c44407 x-runtime: - - '0.006210' + - '0.008331' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1197,7 +1031,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:57 GMT + recorded_at: Tue, 20 Aug 2024 11:58:28 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1208,14 +1042,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:58 GMT + - Tue, 20 Aug 2024 11:58:29 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1239,9 +1073,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - a3589b4d761c8404ddd8e07b27f7647f + - adf339dc7df641f2260bb3a186ee14d6 x-runtime: - - '0.008023' + - '0.009907' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1254,7 +1088,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:03:58 GMT + recorded_at: Tue, 20 Aug 2024 11:58:28 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE014 @@ -1265,14 +1099,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:58 GMT + - Tue, 20 Aug 2024 11:58:29 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1296,9 +1130,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 42518ef7b43db4fc952227a3522a3c5b + - 3f6c4e831c5ce5eb71dc7ce735d3ff42 x-runtime: - - '0.005322' + - '0.004729' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1306,7 +1140,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:58 GMT + recorded_at: Tue, 20 Aug 2024 11:58:29 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE014 @@ -1317,14 +1151,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:03:59 GMT + - Tue, 20 Aug 2024 11:58:29 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1348,9 +1182,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 8ad7e657806a53419b3fd7fd3df344bb + - e618d3a006ce84bea5828f6560c5dd1a x-runtime: - - '0.004580' + - '0.004854' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1358,7 +1192,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:03:59 GMT + recorded_at: Tue, 20 Aug 2024 11:58:29 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1369,14 +1203,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:00 GMT + - Tue, 20 Aug 2024 11:58:30 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1400,9 +1234,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 8e4f7e09c1262ec65ef4815fd82e9d1d + - ff0ceeb2d729144aeba053c8aee0b8e4 x-runtime: - - '0.008140' + - '0.006828' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1412,7 +1246,7 @@ http_interactions: to Family Help (Higher) and to all steps necessary to negotiate and conclude a settlement. To include the issue of proceedings and representation in those proceedings save in relation to or at a contested final hearing.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:04:00 GMT + recorded_at: Tue, 20 Aug 2024 11:58:30 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1423,14 +1257,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:00 GMT + - Tue, 20 Aug 2024 11:58:31 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1454,9 +1288,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 2ea694f2b8c905b3ff876c6633c3b67b + - 8a6ab423b4517e95168c2203397edc89 x-runtime: - - '0.008180' + - '0.010641' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1466,5 +1300,5 @@ http_interactions: to Family Help (Higher) and to all steps necessary to negotiate and conclude a settlement. To include the issue of proceedings and representation in those proceedings save in relation to or at a contested final hearing.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:04:00 GMT + recorded_at: Tue, 20 Aug 2024 11:58:31 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Applicant_details/I_can_see_that_the_applicant_does_not_receive_benefits.yml b/features/cassettes/Applicant_details/I_can_see_that_the_applicant_does_not_receive_benefits.yml index 8ef731eaac..312736eff9 100644 --- a/features/cassettes/Applicant_details/I_can_see_that_the_applicant_does_not_receive_benefits.yml +++ b/features/cassettes/Applicant_details/I_can_see_that_the_applicant_does_not_receive_benefits.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:47 GMT + - Tue, 20 Aug 2024 11:59:27 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:04:47 GMT + recorded_at: Tue, 20 Aug 2024 11:59:27 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:48 GMT + - Tue, 20 Aug 2024 11:59:28 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 3e38e4c4e612f7966cb42305f721eda0 + - 7f346533ce21f480b6554816cadd6cf9 x-runtime: - - '0.020579' + - '0.030603' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:04:48 GMT + recorded_at: Tue, 20 Aug 2024 11:59:28 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:50 GMT + - Tue, 20 Aug 2024 11:59:30 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 509ee6fc2bfad968b6d35477386420a9 + - 87b59ed72be85cd0384fc1150bf5eac6 x-runtime: - - '0.023670' + - '0.034428' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:04:50 GMT + recorded_at: Tue, 20 Aug 2024 11:59:30 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:50 GMT + - Tue, 20 Aug 2024 11:59:30 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 573786b55fcce270969e89d7a11dfaf7 + - d12ffa67a4bd94377e361209ecf7c4dd x-runtime: - - '0.010500' + - '0.009903' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:04:50 GMT + recorded_at: Tue, 20 Aug 2024 11:59:30 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:51 GMT + - Tue, 20 Aug 2024 11:59:31 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c2537a6cd9007f1df1bae72f6bc38c95 + - '09a25d4fcb1ccfdd9088c21cef0d0246' x-runtime: - - '0.003818' + - '0.003878' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:04:51 GMT + recorded_at: Tue, 20 Aug 2024 11:59:31 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:51 GMT + - Tue, 20 Aug 2024 11:59:32 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 463b38f44e70392c81201b12a14a3579 + - c92fb836c7cfe040de94029d0a89795d x-runtime: - - '0.004570' + - '0.003662' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:04:51 GMT + recorded_at: Tue, 20 Aug 2024 11:59:32 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:52 GMT + - Tue, 20 Aug 2024 11:59:33 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - ea6ff6c4c3f3f7ca05af58b0364527a6 + - 035c2055fe2cf59053ccaaacbbed90e6 x-runtime: - - '0.008112' + - '0.006949' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -793,7 +726,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:04:52 GMT + recorded_at: Tue, 20 Aug 2024 11:59:33 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -804,14 +737,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:53 GMT + - Tue, 20 Aug 2024 11:59:33 GMT content-type: - application/json; charset=utf-8 content-length: @@ -835,9 +768,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 19aff8f5ff9794c304a31e15c9a2307e + - 25cc0ce7410a5147a577b7dbb34153b2 x-runtime: - - '0.007436' + - '0.012258' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -850,5 +783,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:04:53 GMT + recorded_at: Tue, 20 Aug 2024 11:59:33 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Applicant_details/I_can_see_that_the_applicant_receives_benefits.yml b/features/cassettes/Applicant_details/I_can_see_that_the_applicant_receives_benefits.yml index 0ad4372aa4..05def97d33 100644 --- a/features/cassettes/Applicant_details/I_can_see_that_the_applicant_receives_benefits.yml +++ b/features/cassettes/Applicant_details/I_can_see_that_the_applicant_receives_benefits.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:22 GMT + - Tue, 20 Aug 2024 11:58:57 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:04:22 GMT + recorded_at: Tue, 20 Aug 2024 11:58:57 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:24 GMT + - Tue, 20 Aug 2024 11:58:58 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 5f43645fcbb4254776aa4b6c5078657d + - d1be69628d61596957f4ebe2027e893a x-runtime: - - '0.023775' + - '0.030047' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:04:24 GMT + recorded_at: Tue, 20 Aug 2024 11:58:58 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:25 GMT + - Tue, 20 Aug 2024 11:58:59 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 3390f37ff2d1a29c3b1337145686f259 + - 41378875e7b23fad552a237d2339a8b0 x-runtime: - - '0.021405' + - '0.026939' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:04:25 GMT + recorded_at: Tue, 20 Aug 2024 11:58:59 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:25 GMT + - Tue, 20 Aug 2024 11:59:00 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 3259321d8e6e1efd1445c78c7e2391ff + - 8c36a9b5edbd1ffa11c121f2b2806423 x-runtime: - - '0.009886' + - '0.014913' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:04:25 GMT + recorded_at: Tue, 20 Aug 2024 11:59:00 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:26 GMT + - Tue, 20 Aug 2024 11:59:01 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c034ab4f8f75c1f412fa82d83d6bfd45 + - ad64435d45bbecea520f0c0fbf6e692f x-runtime: - - '0.004710' + - '0.005047' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:04:26 GMT + recorded_at: Tue, 20 Aug 2024 11:59:01 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:27 GMT + - Tue, 20 Aug 2024 11:59:01 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - f7e061c3b7f582c66a925e4db845d075 + - e10d9abf0a620d7f3db35f135c5084cd x-runtime: - - '0.004398' + - '0.003135' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:04:27 GMT + recorded_at: Tue, 20 Aug 2024 11:59:01 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:29 GMT + - Tue, 20 Aug 2024 11:59:03 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - bfec69d7a98b9bd1cbc6c95f6d68344e + - c7a0e24e5043cb3eca5561d1c00837f6 x-runtime: - - '0.007958' + - '0.009753' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -790,7 +723,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:04:29 GMT + recorded_at: Tue, 20 Aug 2024 11:59:03 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -801,14 +734,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:29 GMT + - Tue, 20 Aug 2024 11:59:04 GMT content-type: - application/json; charset=utf-8 content-length: @@ -832,9 +765,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - d119d8d5fc5964ff6b8eff8de6d99909 + - e5ed602e07dd2730ffe2237ff9138c23 x-runtime: - - '0.007539' + - '0.011348' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -844,7 +777,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:04:29 GMT + recorded_at: Tue, 20 Aug 2024 11:59:04 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -855,14 +788,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:30 GMT + - Tue, 20 Aug 2024 11:59:04 GMT content-type: - application/json; charset=utf-8 content-length: @@ -886,9 +819,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - e2de6567fc8d4005b3a0f0ea9b293f49 + - d6785928e4e3f0f902e740e86e745691 x-runtime: - - '0.007798' + - '0.010418' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -901,7 +834,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:04:30 GMT + recorded_at: Tue, 20 Aug 2024 11:59:04 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -912,14 +845,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:04:30 GMT + - Tue, 20 Aug 2024 11:59:05 GMT content-type: - application/json; charset=utf-8 content-length: @@ -943,9 +876,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 76a5c7a5725d970a84f7f55cd589402c + - 33cb84ec35fbefb6f82b8daeab2924b3 x-runtime: - - '0.006576' + - '0.009892' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -958,5 +891,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:04:30 GMT + recorded_at: Tue, 20 Aug 2024 11:59:05 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Applicant_under_16_blocked/I_am_instructed_to_use_CCMS_when_applicant_was_under_16_on_earliest_delegated_function_date.yml b/features/cassettes/Applicant_under_16_blocked/I_am_instructed_to_use_CCMS_when_applicant_was_under_16_on_earliest_delegated_function_date.yml index 17065aad1d..557d54cb41 100644 --- a/features/cassettes/Applicant_under_16_blocked/I_am_instructed_to_use_CCMS_when_applicant_was_under_16_on_earliest_delegated_function_date.yml +++ b/features/cassettes/Applicant_under_16_blocked/I_am_instructed_to_use_CCMS_when_applicant_was_under_16_on_earliest_delegated_function_date.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:39 GMT + - Tue, 20 Aug 2024 12:00:12 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:07:39 GMT + recorded_at: Tue, 20 Aug 2024 12:00:12 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:40 GMT + - Tue, 20 Aug 2024 12:00:13 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - b5172980e99694dd5d71c788bbeb4f28 + - 75892a103b2cfa6f0d29aa05926067fb x-runtime: - - '0.038239' + - '0.028848' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:07:40 GMT + recorded_at: Tue, 20 Aug 2024 12:00:13 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:41 GMT + - Tue, 20 Aug 2024 12:00:14 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - f0a9184fd9fde618193e4f047c600c03 + - 78fcc31b5aae78fd75f12ae766387e5c x-runtime: - - '0.020727' + - '0.030836' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:07:41 GMT + recorded_at: Tue, 20 Aug 2024 12:00:14 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:42 GMT + - Tue, 20 Aug 2024 12:00:14 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c0db2a5249e1ff5d7ff3d7b1a8d803c5 + - 67c04e615d0412efb473d99ef436589f x-runtime: - - '0.010193' + - '0.011207' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:07:42 GMT + recorded_at: Tue, 20 Aug 2024 12:00:14 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:43 GMT + - Tue, 20 Aug 2024 12:00:15 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 748526b46567c40ba91eb805a2620eef + - d9e3e03f214b3992fc6fbcdf3fd87856 x-runtime: - - '0.004552' + - '0.003811' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:07:43 GMT + recorded_at: Tue, 20 Aug 2024 12:00:15 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:43 GMT + - Tue, 20 Aug 2024 12:00:16 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - a13a320c510599d219526c221c20cc9f + - 1d9b61ca158248e544b61d5af21bf6cf x-runtime: - - '0.004507' + - '0.004631' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:07:43 GMT + recorded_at: Tue, 20 Aug 2024 12:00:15 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:45 GMT + - Tue, 20 Aug 2024 12:00:17 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6bf15884cc4cf579f425b659e9ebf42f + - 2c3dc3b84c95d2b3933b2f2d4fd91b0a x-runtime: - - '0.015633' + - '0.008034' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -790,7 +723,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:07:44 GMT + recorded_at: Tue, 20 Aug 2024 12:00:17 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -801,14 +734,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:45 GMT + - Tue, 20 Aug 2024 12:00:17 GMT content-type: - application/json; charset=utf-8 content-length: @@ -832,9 +765,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 2538c60333d7e183b62d97c1d6eddb01 + - 1ecf7e30b4451caab8f62435361e5dfa x-runtime: - - '0.008375' + - '0.009847' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -844,7 +777,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:07:45 GMT + recorded_at: Tue, 20 Aug 2024 12:00:17 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -855,14 +788,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:46 GMT + - Tue, 20 Aug 2024 12:00:17 GMT content-type: - application/json; charset=utf-8 content-length: @@ -886,9 +819,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - f7981a3a0c7c3f507f5db547cd233e95 + - 764bb2ed9116a1a3cc3f7ef0fdd16570 x-runtime: - - '0.006557' + - '0.010185' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -901,7 +834,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:07:45 GMT + recorded_at: Tue, 20 Aug 2024 12:00:17 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -912,14 +845,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:07:46 GMT + - Tue, 20 Aug 2024 12:00:18 GMT content-type: - application/json; charset=utf-8 content-length: @@ -943,9 +876,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 47f277e52f0527331d0c357d37dc1faa + - 1f6d0fc1f95697aa9b932e5a8831bbf3 x-runtime: - - '0.007666' + - '0.009946' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -958,5 +891,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:07:46 GMT + recorded_at: Tue, 20 Aug 2024 12:00:18 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Checking_answers_for_linked_and_copied_cases/If_I_change_the_copied_from_Yes_to_No.yml b/features/cassettes/Checking_answers_for_linked_and_copied_cases/If_I_change_the_copied_from_Yes_to_No.yml index 1c9b082117..e25d6206a0 100644 --- a/features/cassettes/Checking_answers_for_linked_and_copied_cases/If_I_change_the_copied_from_Yes_to_No.yml +++ b/features/cassettes/Checking_answers_for_linked_and_copied_cases/If_I_change_the_copied_from_Yes_to_No.yml @@ -1,27 +1,27 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:13 GMT + - Tue, 20 Aug 2024 12:29:46 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -37,209 +37,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 4c63107c8c76513411c040a2ee9d93db + - a610db6d266cfa76a1f02b4862f18bfe x-runtime: - - '0.021165' + - '0.032861' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:08:13 GMT + recorded_at: Tue, 20 Aug 2024 12:29:46 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:14 GMT + - Tue, 20 Aug 2024 12:29:47 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -255,187 +222,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - d05fa7c31a2199e086808530be05e637 + - b5f7f1eb8673387a548e261f51b17e03 x-runtime: - - '0.021657' + - '0.033286' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:08:14 GMT + recorded_at: Tue, 20 Aug 2024 12:29:47 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -446,14 +380,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:14 GMT + - Tue, 20 Aug 2024 12:29:48 GMT content-type: - application/json; charset=utf-8 content-length: @@ -477,9 +411,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 25f3fc938ebe29e1ded95eb42cbc5bac + - 2211e62051b6404c12e1e7ca577cdd79 x-runtime: - - '0.010129' + - '0.014689' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -497,7 +431,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:08:14 GMT + recorded_at: Tue, 20 Aug 2024 12:29:47 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -508,14 +442,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:15 GMT + - Tue, 20 Aug 2024 12:29:49 GMT content-type: - application/json; charset=utf-8 content-length: @@ -539,9 +473,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - fbe0e85ea009945eaaba0b3b9bbb097e + - 802a87f3d7b50b824ace3fac0e1cb2f3 x-runtime: - - '0.004175' + - '0.003662' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -549,7 +483,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:08:15 GMT + recorded_at: Tue, 20 Aug 2024 12:29:48 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -560,14 +494,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:16 GMT + - Tue, 20 Aug 2024 12:29:49 GMT content-type: - application/json; charset=utf-8 content-length: @@ -591,9 +525,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 83f266a1bae00bcb81788068c1ce3184 + - c2c29951b5d568ff05fbb14fcb2724dd x-runtime: - - '0.003604' + - '0.003431' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -601,7 +535,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:08:16 GMT + recorded_at: Tue, 20 Aug 2024 12:29:49 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -612,14 +546,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:17 GMT + - Tue, 20 Aug 2024 12:29:50 GMT content-type: - application/json; charset=utf-8 content-length: @@ -643,9 +577,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6bac476c95e0b3349bb9b8f62be05690 + - dec3fb3a35a6d16c896e64287c338f77 x-runtime: - - '0.007528' + - '0.010170' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -655,7 +589,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:08:17 GMT + recorded_at: Tue, 20 Aug 2024 12:29:50 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -666,14 +600,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:18 GMT + - Tue, 20 Aug 2024 12:29:51 GMT content-type: - application/json; charset=utf-8 content-length: @@ -697,9 +631,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6f2f5f5b9e8b87e72a208689e2abee28 + - e626420763dae31940a726ced537eaba x-runtime: - - '0.007877' + - '0.006579' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -709,7 +643,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:08:17 GMT + recorded_at: Tue, 20 Aug 2024 12:29:50 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -720,14 +654,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:18 GMT + - Tue, 20 Aug 2024 12:29:51 GMT content-type: - application/json; charset=utf-8 content-length: @@ -751,9 +685,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c83e6d086c0903f35660f5d87ab517cd + - 00cc6e3cd2ed29c89dee261d299d3328 x-runtime: - - '0.006864' + - '0.010084' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -766,7 +700,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:08:18 GMT + recorded_at: Tue, 20 Aug 2024 12:29:51 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -777,14 +711,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:18 GMT + - Tue, 20 Aug 2024 12:29:52 GMT content-type: - application/json; charset=utf-8 content-length: @@ -808,9 +742,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 75926fbfd065904209f90ccdbbbbcbca + - 635e98b21ad24e477ad5573531984bcc x-runtime: - - '0.007298' + - '0.006818' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -823,5 +757,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:08:18 GMT + recorded_at: Tue, 20 Aug 2024 12:29:51 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Checking_answers_for_linked_and_copied_cases/If_I_change_the_linked_from_Family_to_No.yml b/features/cassettes/Checking_answers_for_linked_and_copied_cases/If_I_change_the_linked_from_Family_to_No.yml index 73486041f9..757c561b98 100644 --- a/features/cassettes/Checking_answers_for_linked_and_copied_cases/If_I_change_the_linked_from_Family_to_No.yml +++ b/features/cassettes/Checking_answers_for_linked_and_copied_cases/If_I_change_the_linked_from_Family_to_No.yml @@ -1,27 +1,27 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:04 GMT + - Tue, 20 Aug 2024 12:29:37 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -37,209 +37,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 03c47bb28dd0a0a950072dab59bdb77a + - 9ed119ba2b368bf043f80c4c8e2f22e2 x-runtime: - - '0.024204' + - '0.028298' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:08:04 GMT + recorded_at: Tue, 20 Aug 2024 12:29:37 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:06 GMT + - Tue, 20 Aug 2024 12:29:38 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -255,187 +222,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 1ed60ffcb218f07bdac4dbf787caf7b2 + - 487b12ee08a089576cc1b58e5169d4af x-runtime: - - '0.023547' + - '0.024729' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:08:06 GMT + recorded_at: Tue, 20 Aug 2024 12:29:38 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -446,14 +380,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:06 GMT + - Tue, 20 Aug 2024 12:29:39 GMT content-type: - application/json; charset=utf-8 content-length: @@ -477,9 +411,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - '08890a315b1a6f6f5acf25f99608d9ba' + - e495e984a117e7c488a77d709e7aa5c2 x-runtime: - - '0.011295' + - '0.011011' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -497,7 +431,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:08:06 GMT + recorded_at: Tue, 20 Aug 2024 12:29:39 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -508,14 +442,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:07 GMT + - Tue, 20 Aug 2024 12:29:40 GMT content-type: - application/json; charset=utf-8 content-length: @@ -539,9 +473,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6d5a742826894ab56381605d623aa7ab + - f5af74b151545f0d366fa601392e7fdf x-runtime: - - '0.004406' + - '0.002785' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -549,7 +483,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:08:07 GMT + recorded_at: Tue, 20 Aug 2024 12:29:40 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -560,14 +494,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:07 GMT + - Tue, 20 Aug 2024 12:29:40 GMT content-type: - application/json; charset=utf-8 content-length: @@ -591,9 +525,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - f5e140efc772afd66f04fae7e6833382 + - ec2f9bec0ee3035adf63c6d8277d658a x-runtime: - - '0.003806' + - '0.004136' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -601,7 +535,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:08:07 GMT + recorded_at: Tue, 20 Aug 2024 12:29:40 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -612,14 +546,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:08 GMT + - Tue, 20 Aug 2024 12:29:42 GMT content-type: - application/json; charset=utf-8 content-length: @@ -643,9 +577,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c7327d187d5ba241a1ad0f3f8e53d240 + - b6d9c785cc976da436047f5ecd638bd3 x-runtime: - - '0.008154' + - '0.009867' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -655,7 +589,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:08:08 GMT + recorded_at: Tue, 20 Aug 2024 12:29:41 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -666,14 +600,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:09 GMT + - Tue, 20 Aug 2024 12:29:42 GMT content-type: - application/json; charset=utf-8 content-length: @@ -697,9 +631,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - f46590c2b6c5645f92f9603bda5bc2ed + - bd2b03471f6746bbc1b47111a53a66e4 x-runtime: - - '0.006867' + - '0.006788' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -709,7 +643,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:08:09 GMT + recorded_at: Tue, 20 Aug 2024 12:29:42 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -720,14 +654,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:09 GMT + - Tue, 20 Aug 2024 12:29:42 GMT content-type: - application/json; charset=utf-8 content-length: @@ -751,9 +685,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - fca19a95c3f1bd281c96035a1cb9d80e + - cebc761dd55253daaf5cff5c167ce7ac x-runtime: - - '0.006352' + - '0.011544' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -766,7 +700,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:08:09 GMT + recorded_at: Tue, 20 Aug 2024 12:29:42 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -777,14 +711,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:08:10 GMT + - Tue, 20 Aug 2024 12:29:43 GMT content-type: - application/json; charset=utf-8 content-length: @@ -808,9 +742,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 0c134c3dfa9f3debd8c7181267691cad + - 1916f4fb69af2c377bee45fd85a36bce x-runtime: - - '0.007692' + - '0.012069' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -823,5 +757,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:08:10 GMT + recorded_at: Tue, 20 Aug 2024 12:29:43 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Checking_client_details_answers_backwards_and_forwards/I_want_to_change_the_proceeding_type_from_the_check_your_answers_page.yml b/features/cassettes/Checking_client_details_answers_backwards_and_forwards/I_want_to_change_the_proceeding_type_from_the_check_your_answers_page.yml index 4642aa9a52..8e87887403 100644 --- a/features/cassettes/Checking_client_details_answers_backwards_and_forwards/I_want_to_change_the_proceeding_type_from_the_check_your_answers_page.yml +++ b/features/cassettes/Checking_client_details_answers_backwards_and_forwards/I_want_to_change_the_proceeding_type_from_the_check_your_answers_page.yml @@ -1,27 +1,27 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:09:57 GMT + - Tue, 20 Aug 2024 12:11:32 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -37,209 +37,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - acb06866041d811dc2ffe0c13c9fdcd5 + - 965c097b645e35e81130151d19465f62 x-runtime: - - '0.020177' + - '0.029989' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:09:57 GMT + recorded_at: Tue, 20 Aug 2024 12:11:32 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:09:59 GMT + - Tue, 20 Aug 2024 12:11:33 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -255,187 +222,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 2f3ff73ed6e178db1ebf647a2af9c025 + - f479c2080ec3f9fac2dfd1ecfa2bab98 x-runtime: - - '0.019461' + - '0.035024' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:09:59 GMT + recorded_at: Tue, 20 Aug 2024 12:11:33 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -446,14 +380,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:09:59 GMT + - Tue, 20 Aug 2024 12:11:33 GMT content-type: - application/json; charset=utf-8 content-length: @@ -477,9 +411,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 2512194b2a19ed5ba8a484d1f4172928 + - 19aa8ff085558e9e203ff5ad267d5626 x-runtime: - - '0.009095' + - '0.019429' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -497,7 +431,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:09:59 GMT + recorded_at: Tue, 20 Aug 2024 12:11:33 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -508,14 +442,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:10:00 GMT + - Tue, 20 Aug 2024 12:11:34 GMT content-type: - application/json; charset=utf-8 content-length: @@ -539,9 +473,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 43cd591ff2ae9f83eeff6e302d8da357 + - 792dd7ee541838dd765d1cc0ff06052e x-runtime: - - '0.004523' + - '0.004943' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -549,7 +483,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:10:00 GMT + recorded_at: Tue, 20 Aug 2024 12:11:34 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -560,14 +494,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:10:00 GMT + - Tue, 20 Aug 2024 12:11:35 GMT content-type: - application/json; charset=utf-8 content-length: @@ -591,9 +525,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c7145ff0540859b8416fe01390c5442c + - '0084db05cecadb5b7b4d1207e0a56782' x-runtime: - - '0.004333' + - '0.003935' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -601,7 +535,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:10:00 GMT + recorded_at: Tue, 20 Aug 2024 12:11:35 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -612,14 +546,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:10:01 GMT + - Tue, 20 Aug 2024 12:11:36 GMT content-type: - application/json; charset=utf-8 content-length: @@ -643,9 +577,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 165e318ab860705ca6a57c845a09fce2 + - eef072531b80db9d6754d75fee670841 x-runtime: - - '0.007058' + - '0.011130' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -658,7 +592,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:10:01 GMT + recorded_at: Tue, 20 Aug 2024 12:11:36 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -669,14 +603,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:10:02 GMT + - Tue, 20 Aug 2024 12:11:37 GMT content-type: - application/json; charset=utf-8 content-length: @@ -700,9 +634,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6f0097b2726dace7db61f0d6062d9ae7 + - 7948e0b906e591d72875a898d5de6de5 x-runtime: - - '0.007848' + - '0.011879' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -715,5 +649,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:10:02 GMT + recorded_at: Tue, 20 Aug 2024 12:11:37 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Choosing_full_representation_level_of_service_in_proceeding_loop/When_the_provider_changes_the_level_of_service_to_full_representation_from_the_default.yml b/features/cassettes/Choosing_full_representation_level_of_service_in_proceeding_loop/When_the_provider_changes_the_level_of_service_to_full_representation_from_the_default.yml deleted file mode 100644 index bc1489fc82..0000000000 --- a/features/cassettes/Choosing_full_representation_level_of_service_in_proceeding_loop/When_the_provider_changes_the_level_of_service_to_full_representation_from_the_default.yml +++ /dev/null @@ -1,1022 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:29 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 662754af0d2942eee4838ac3ee41cc80 - X-Runtime: - - '0.026661' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Thu, 10 Nov 2022 14:14:28 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:30 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 39a00c0e77ce8dad06f7efa3e5887c4d - X-Runtime: - - '0.026647' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Thu, 10 Nov 2022 14:14:30 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE013 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:30 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fe69693a4b975af261ae9d9aeaa36bd4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - a660138d1433ec1a9ba8112cb2118eb3 - X-Runtime: - - '0.014637' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"SE013","meaning":"Child arrangements order - (contact)","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","name":"child_arrangements_order_contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Children - - section 8","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"FM059","meaning":"FHH - Children","description":"Limited to Family Help (Higher) and to all steps - necessary to negotiate and conclude a settlement. To include the issue of - proceedings and representation in those proceedings save in relation to or - at a contested final hearing."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":1,"name":"Family - Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Thu, 10 Nov 2022 14:14:30 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:30 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - f015161a9dc6024684c9099beb1311b8 - X-Runtime: - - '0.004163' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Thu, 10 Nov 2022 14:14:30 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:31 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c90b3fa235ba972ea3565340c64d6873 - X-Runtime: - - '0.003630' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Thu, 10 Nov 2022 14:14:31 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"DA001","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:32 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"738a2e1692d7caa18f9ac20fab29e586" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 320818a3c4a5bfbff408bc2a03ec41a6 - X-Runtime: - - '0.011399' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"DA001","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full - Representation","stage":8},"default_scope":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings).","additional_params":[]}}' - recorded_at: Thu, 10 Nov 2022 14:14:31 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"DA001","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:32 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"738a2e1692d7caa18f9ac20fab29e586" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - f4c797f8fc9f0ee33edb93c311f7c48b - X-Runtime: - - '0.010672' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"DA001","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full - Representation","stage":8},"default_scope":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings).","additional_params":[]}}' - recorded_at: Thu, 10 Nov 2022 14:14:32 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:32 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 6ef943d81c60c99a70b398cf6de8a57c - X-Runtime: - - '0.004897' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Thu, 10 Nov 2022 14:14:32 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:33 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 11a22b58d602ccec2585a864cbc296c4 - X-Runtime: - - '0.009059' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Thu, 10 Nov 2022 14:14:33 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:33 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"582eef433871eb95799bae875a4333de" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - b412f2913bc6c3d6699c25132043db1a - X-Runtime: - - '0.011352' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":1,"name":"Family - Help (Higher)","stage":1},"default_scope":{"code":"FM059","meaning":"FHH Children","description":"Limited - to Family Help (Higher) and to all steps necessary to negotiate and conclude - a settlement. To include the issue of proceedings and representation in those - proceedings save in relation to or at a contested final hearing.","additional_params":[]}}' - recorded_at: Thu, 10 Nov 2022 14:14:33 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:34 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"582eef433871eb95799bae875a4333de" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 4b63ca7113482b23a4ffaa87b2d1feba - X-Runtime: - - '0.012814' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":1,"name":"Family - Help (Higher)","stage":1},"default_scope":{"code":"FM059","meaning":"FHH Children","description":"Limited - to Family Help (Higher) and to all steps necessary to negotiate and conclude - a settlement. To include the issue of proceedings and representation in those - proceedings save in relation to or at a contested final hearing.","additional_params":[]}}' - recorded_at: Thu, 10 Nov 2022 14:14:34 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE013 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:34 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fe69693a4b975af261ae9d9aeaa36bd4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - f117960d0700c869f453ff0f2e3fba9e - X-Runtime: - - '0.021873' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"SE013","meaning":"Child arrangements order - (contact)","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","name":"child_arrangements_order_contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Children - - section 8","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"FM059","meaning":"FHH - Children","description":"Limited to Family Help (Higher) and to all steps - necessary to negotiate and conclude a settlement. To include the issue of - proceedings and representation in those proceedings save in relation to or - at a contested final hearing."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":1,"name":"Family - Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Thu, 10 Nov 2022 14:14:34 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE013 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:34 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fe69693a4b975af261ae9d9aeaa36bd4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 0c4502c97815c2164a74a75717a7630a - X-Runtime: - - '0.018934' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"SE013","meaning":"Child arrangements order - (contact)","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","name":"child_arrangements_order_contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Children - - section 8","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"FM059","meaning":"FHH - Children","description":"Limited to Family Help (Higher) and to all steps - necessary to negotiate and conclude a settlement. To include the issue of - proceedings and representation in those proceedings save in relation to or - at a contested final hearing."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":1,"name":"Family - Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Thu, 10 Nov 2022 14:14:34 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:34 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"582eef433871eb95799bae875a4333de" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 6281d85f232298bda7d1ec6e0a1e1126 - X-Runtime: - - '0.011472' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":1,"name":"Family - Help (Higher)","stage":1},"default_scope":{"code":"FM059","meaning":"FHH Children","description":"Limited - to Family Help (Higher) and to all steps necessary to negotiate and conclude - a settlement. To include the issue of proceedings and representation in those - proceedings save in relation to or at a contested final hearing.","additional_params":[]}}' - recorded_at: Thu, 10 Nov 2022 14:14:34 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_scopes - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A","level_of_service_code":3}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:35 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fd5e1d6f723a1fdb3fb359ad43b4c7bb" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 511d740cbfe42073eea7ecc894e77486 - X-Runtime: - - '0.021001' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A","level_of_service_code":3},"level_of_service":{"level":3,"name":"Full - Representation","stage":8,"scope_limitations":[{"code":"FM007","meaning":"Blood - Tests or DNA Tests","description":"Limited to all steps up to and including - the obtaining of blood tests or DNA tests and thereafter a solicitor''s report.","additional_params":[]},{"code":"FM019","meaning":"Exchange - of Evidence","description":"Limited to all steps up to and including the exchange - of evidence (including any welfare officer''s/guardian ad litem''s report) - and directions appointments but not including a final contested hearing and - thereafter to a solicitors report (or if so advised a Counsel''s opinion) - on the issues and prospects of success.","additional_params":[]},{"code":"FM039","meaning":"Final - hearing(CAFCASS rept)priv law only","description":"Limited to all steps up - to and including the final hearing save in the event of a Court and Family - Reporter''s/Children''s Guardian''s report unfavourable to the client, in - which case the certificate is thereafter limited to a Solicitor''s report - or, if the Solicitor so advises, external Counsel''s opinion or the opinion - of an external solicitor with higher court advocacy rights on the merits of - the matter continuing on a contested basis.","additional_params":[]},{"code":"CV118","meaning":"Hearing","description":"Limited - to all steps up to and including the hearing on [see additional limitation - notes]","additional_params":[{"name":"hearing_date","type":"date","mandatory":true}]},{"code":"CV027","meaning":"Hearing/Adjournment","description":"Limited - to all steps (including any adjournment thereof) up to and including the hearing - on","additional_params":[{"name":"hearing_date","type":"date","mandatory":true}]},{"code":"FM049","meaning":"Hearing-children","description":"Limited - to all steps up to and including trial/final hearing and any action necessary - to implement (but not enforce) the judgment or order.","additional_params":[]},{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date.","additional_params":[]}]}}' - recorded_at: Thu, 10 Nov 2022 14:14:35 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_scopes - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A","level_of_service_code":3}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Thu, 10 Nov 2022 14:14:35 GMT - Content-Type: - - application/json; charset=utf-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fd5e1d6f723a1fdb3fb359ad43b4c7bb" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - bf540500237cc52555c794334153bd9f - X-Runtime: - - '0.020278' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"SE013","delegated_functions_used":false,"client_involvement_type":"A","level_of_service_code":3},"level_of_service":{"level":3,"name":"Full - Representation","stage":8,"scope_limitations":[{"code":"FM007","meaning":"Blood - Tests or DNA Tests","description":"Limited to all steps up to and including - the obtaining of blood tests or DNA tests and thereafter a solicitor''s report.","additional_params":[]},{"code":"FM019","meaning":"Exchange - of Evidence","description":"Limited to all steps up to and including the exchange - of evidence (including any welfare officer''s/guardian ad litem''s report) - and directions appointments but not including a final contested hearing and - thereafter to a solicitors report (or if so advised a Counsel''s opinion) - on the issues and prospects of success.","additional_params":[]},{"code":"FM039","meaning":"Final - hearing(CAFCASS rept)priv law only","description":"Limited to all steps up - to and including the final hearing save in the event of a Court and Family - Reporter''s/Children''s Guardian''s report unfavourable to the client, in - which case the certificate is thereafter limited to a Solicitor''s report - or, if the Solicitor so advises, external Counsel''s opinion or the opinion - of an external solicitor with higher court advocacy rights on the merits of - the matter continuing on a contested basis.","additional_params":[]},{"code":"CV118","meaning":"Hearing","description":"Limited - to all steps up to and including the hearing on [see additional limitation - notes]","additional_params":[{"name":"hearing_date","type":"date","mandatory":true}]},{"code":"CV027","meaning":"Hearing/Adjournment","description":"Limited - to all steps (including any adjournment thereof) up to and including the hearing - on","additional_params":[{"name":"hearing_date","type":"date","mandatory":true}]},{"code":"FM049","meaning":"Hearing-children","description":"Limited - to all steps up to and including trial/final hearing and any action necessary - to implement (but not enforce) the judgment or order.","additional_params":[]},{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date.","additional_params":[]}]}}' - recorded_at: Thu, 10 Nov 2022 14:14:35 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/Copy_a_case_s_applicable_details/I_choose_not_to_copy_another_case_s_details.yml b/features/cassettes/Copy_a_case_s_applicable_details/I_choose_not_to_copy_another_case_s_details.yml deleted file mode 100644 index b0475ce3e0..0000000000 --- a/features/cassettes/Copy_a_case_s_applicable_details/I_choose_not_to_copy_another_case_s_details.yml +++ /dev/null @@ -1,195 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.7.11 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 01 Nov 2023 17:54:44 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"105\",\r\n \"lastupdate\" - : \"2023-11-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Wed, 01 Nov 2023 17:54:43 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.11 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 01 Nov 2023 17:54:44 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - '0' - X-Content-Type-Options: - - nosniff - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 218a4b0a6f0536d591b75b0e1cc6cf9f - X-Runtime: - - '0.042551' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Wed, 01 Nov 2023 17:54:44 GMT -recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Create_application/Allows_return_to_and_proceed_from_Delegated_Function_date_view.yml b/features/cassettes/Create_application/Allows_return_to_and_proceed_from_Delegated_Function_date_view.yml deleted file mode 100644 index d6d3a7aedd..0000000000 --- a/features/cassettes/Create_application/Allows_return_to_and_proceed_from_Delegated_Function_date_view.yml +++ /dev/null @@ -1,524 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:41 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"98\",\r\n \"lastupdate\" - : \"2023-01-13\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 16 Jan 2023 15:28:41 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:41 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 286df46501bd389b5dbc06b459415de4 - X-Runtime: - - '0.121183' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:28:41 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:43 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 3c98fc6cb9cc952aa3f15d33d6ce301a - X-Runtime: - - '0.028098' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:28:43 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:43 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 04cf48d6387643e6f511a5496bdd9c94 - X-Runtime: - - '0.016471' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:28:43 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:43 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 44e7ae9d4272c9a0c0ab1b3bedc18256 - X-Runtime: - - '0.005163' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:28:43 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:44 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 06530c0579e0af40e508c4754e3fc3f8 - X-Runtime: - - '0.004824' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:28:44 GMT -- request: - method: get - uri: https://www.gov.uk/bank-holidays.json - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - Host: - - www.gov.uk - response: - status: - code: 200 - message: OK - headers: - Connection: - - keep-alive - Content-Length: - - '17854' - Content-Type: - - application/json; charset=utf-8 - Server: - - nginx - Access-Control-Allow-Origin: - - "*" - Cache-Control: - - max-age=3600, public - Content-Security-Policy-Report-Only: - - 'default-src ''self''; img-src ''self'' data: *.publishing.service.gov.uk - www.gov.uk *.dev.gov.uk www.google-analytics.com ssl.google-analytics.com - stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com - region1.google-analytics.com lux.speedcurve.com assets.digital.cabinet-office.gov.uk - https://img.youtube.com; script-src ''self'' www.google-analytics.com ssl.google-analytics.com - stats.g.doubleclick.net www.googletagmanager.com www.region1.google-analytics.com - region1.google-analytics.com www.gstatic.com *.ytimg.com www.youtube.com www.youtube-nocookie.com - ''unsafe-inline''; style-src ''self'' www.gstatic.com ''unsafe-inline''; font-src - ''self''; connect-src ''self'' *.publishing.service.gov.uk www.gov.uk *.dev.gov.uk - www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net - www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com - lux.speedcurve.com; object-src ''none''; frame-src ''self'' *.publishing.service.gov.uk - www.gov.uk *.dev.gov.uk www.youtube.com www.youtube-nocookie.com; report-uri - https://csp-reporter.publishing.service.gov.uk/report' - Etag: - - W/"21c0301e75119f0665930ca20ca075aa" - Permissions-Policy: - - interest-cohort=() - Referrer-Policy: - - strict-origin-when-cross-origin - Strict-Transport-Security: - - max-age=31536000; preload - Via: - - 1.1 router, 1.1 varnish, 1.1 varnish - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - ALLOWALL - X-Request-Id: - - 7e1a2105-260b-4c09-9e1a-23dd6dae05dc - Fastly-Backend-Name: - - origin - Accept-Ranges: - - bytes - Date: - - Mon, 16 Jan 2023 15:28:45 GMT - Age: - - '1162' - X-Served-By: - - cache-lhr7355-LHR - X-Cache: - - HIT, HIT - X-Cache-Hits: - - '66' - X-Timer: - - S1673882925.076579,VS0,VE0 - Vary: - - Accept-Encoding - body: - encoding: ASCII-8BIT - string: !binary |- - eyJlbmdsYW5kLWFuZC13YWxlcyI6eyJkaXZpc2lvbiI6ImVuZ2xhbmQtYW5kLXdhbGVzIiwiZXZlbnRzIjpbeyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAxOC0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMTgtMDMtMzAiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDE4LTA0LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTI4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA4LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDE4LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDE4LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDE5LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAxOS0wNC0xOSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMTktMDQtMjIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMTktMDUtMDYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMTktMDUtMjciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTdW1tZXIgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMTktMDgtMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMTktMTItMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMTktMTItMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJOZXcgWWVhcuKAmXMgRGF5IiwiZGF0ZSI6IjIwMjAtMDEtMDEiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIwLTA0LTEwIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyMC0wNC0xMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IChWRSBkYXkpIiwiZGF0ZSI6IjIwMjAtMDUtMDgiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjAtMDUtMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTdW1tZXIgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjAtMDgtMzEiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjAtMTItMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjAtMTItMjgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMS0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjEtMDQtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDIxLTA0LTA1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA1LTAzIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA1LTMxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA4LTMwIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDIxLTEyLTI3Iiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjEtMTItMjgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMi0wMS0wMyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAyMi0wNC0xNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMjItMDQtMTgiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjItMDUtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjItMDYtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJQbGF0aW51bSBKdWJpbGVlIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA2LTAzIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA4LTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmFuayBIb2xpZGF5IGZvciB0aGUgU3RhdGUgRnVuZXJhbCBvZiBRdWVlbiBFbGl6YWJldGggSUkiLCJkYXRlIjoiMjAyMi0wOS0xOSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjItMTItMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjItMTItMjciLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMy0wMS0wMiIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAyMy0wNC0wNyIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMjMtMDQtMTAiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjMtMDUtMDEiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCYW5rIGhvbGlkYXkgZm9yIHRoZSBjb3JvbmF0aW9uIG9mIEtpbmcgQ2hhcmxlcyBJSUkiLCJkYXRlIjoiMjAyMy0wNS0wOCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMy0wNS0yOSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMy0wOC0yOCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMy0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyMy0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyNC0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjQtMDMtMjkiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDI0LTA0LTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA1LTA2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA1LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA4LTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDI0LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDI0LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDI1LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAyNS0wNC0xOCIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMjUtMDQtMjEiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjUtMDUtMDUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjUtMDUtMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTdW1tZXIgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjUtMDgtMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjUtMTItMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjUtMTItMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9XX0sInNjb3RsYW5kIjp7ImRpdmlzaW9uIjoic2NvdGxhbmQiLCJldmVudHMiOlt7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDE4LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiMm5kIEphbnVhcnkiLCJkYXRlIjoiMjAxOC0wMS0wMiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMTgtMDMtMzAiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTI4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA4LTA2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgQW5kcmV34oCZcyBEYXkiLCJkYXRlIjoiMjAxOC0xMS0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAxOC0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAxOC0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAxOS0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMTktMDEtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDE5LTA0LTE5Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAxOS0wNS0wNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAxOS0wNS0yNyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAxOS0wOC0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IEFuZHJld+KAmXMgRGF5IiwiZGF0ZSI6IjIwMTktMTItMDIiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAxOS0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAxOS0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMC0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjAtMDEtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIwLTA0LTEwIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkgKFZFIGRheSkiLCJkYXRlIjoiMjAyMC0wNS0wOCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMC0wNS0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMC0wOC0wMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IEFuZHJld+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjAtMTEtMzAiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjAtMTItMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjAtMTItMjgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMS0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjEtMDEtMDQiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjEtMDQtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA1LTAzIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA1LTMxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA4LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgQW5kcmV34oCZcyBEYXkiLCJkYXRlIjoiMjAyMS0xMS0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMS0xMi0yNyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDIxLTEyLTI4Iiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJOZXcgWWVhcuKAmXMgRGF5IiwiZGF0ZSI6IjIwMjItMDEtMDMiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjItMDEtMDQiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjItMDQtMTUiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA1LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA2LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiUGxhdGludW0gSnViaWxlZSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMi0wNi0wMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMi0wOC0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhbmsgSG9saWRheSBmb3IgdGhlIFN0YXRlIEZ1bmVyYWwgb2YgUXVlZW4gRWxpemFiZXRoIElJIiwiZGF0ZSI6IjIwMjItMDktMTkiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3QgQW5kcmV34oCZcyBEYXkiLCJkYXRlIjoiMjAyMi0xMS0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyMi0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMi0xMi0yNyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDIzLTAxLTAyIiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiIybmQgSmFudWFyeSIsImRhdGUiOiIyMDIzLTAxLTAzIiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIzLTA0LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMy0wNS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhbmsgaG9saWRheSBmb3IgdGhlIGNvcm9uYXRpb24gb2YgS2luZyBDaGFybGVzIElJSSIsImRhdGUiOiIyMDIzLTA1LTA4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIzLTA1LTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIzLTA4LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgQW5kcmV34oCZcyBEYXkiLCJkYXRlIjoiMjAyMy0xMS0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMy0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyMy0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyNC0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjQtMDEtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDI0LTAzLTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNC0wNS0wNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNC0wNS0yNyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNC0wOC0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IEFuZHJld+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjQtMTItMDIiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyNC0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyNC0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyNS0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjUtMDEtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDI1LTA0LTE4Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wNS0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wNS0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wOC0wNCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IEFuZHJld+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjUtMTItMDEiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyNS0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyNS0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX1dfSwibm9ydGhlcm4taXJlbGFuZCI6eyJkaXZpc2lvbiI6Im5vcnRoZXJuLWlyZWxhbmQiLCJldmVudHMiOlt7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDE4LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMTgtMDMtMTkiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMTgtMDMtMzAiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDE4LTA0LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTI4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMTgtMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA4LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDE4LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDE4LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDE5LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMTktMDMtMTgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMTktMDQtMTkiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDE5LTA0LTIyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE5LTA1LTA2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE5LTA1LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMTktMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE5LTA4LTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDE5LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDE5LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDIwLTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjAtMDMtMTciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIwLTA0LTEwIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyMC0wNC0xMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IChWRSBkYXkpIiwiZGF0ZSI6IjIwMjAtMDUtMDgiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjAtMDUtMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCYXR0bGUgb2YgdGhlIEJveW5lIChPcmFuZ2VtZW7igJlzIERheSkiLCJkYXRlIjoiMjAyMC0wNy0xMyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMC0wOC0zMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMC0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyMC0xMi0yOCIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDIxLTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjEtMDMtMTciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIxLTA0LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyMS0wNC0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMS0wNS0wMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMS0wNS0zMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhdHRsZSBvZiB0aGUgQm95bmUgKE9yYW5nZW1lbuKAmXMgRGF5KSIsImRhdGUiOiIyMDIxLTA3LTEyIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMS0wOC0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMS0xMi0yNyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDIxLTEyLTI4Iiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJOZXcgWWVhcuKAmXMgRGF5IiwiZGF0ZSI6IjIwMjItMDEtMDMiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IFBhdHJpY2vigJlzIERheSIsImRhdGUiOiIyMDIyLTAzLTE3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAyMi0wNC0xNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMjItMDQtMTgiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjItMDUtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjItMDYtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJQbGF0aW51bSBKdWJpbGVlIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA2LTAzIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMjItMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA4LTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmFuayBIb2xpZGF5IGZvciB0aGUgU3RhdGUgRnVuZXJhbCBvZiBRdWVlbiBFbGl6YWJldGggSUkiLCJkYXRlIjoiMjAyMi0wOS0xOSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjItMTItMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjItMTItMjciLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMy0wMS0wMiIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjMtMDMtMTciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIzLTA0LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyMy0wNC0xMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMy0wNS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhbmsgaG9saWRheSBmb3IgdGhlIGNvcm9uYXRpb24gb2YgS2luZyBDaGFybGVzIElJSSIsImRhdGUiOiIyMDIzLTA1LTA4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIzLTA1LTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMjMtMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIzLTA4LTI4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDIzLTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDIzLTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDI0LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjQtMDMtMTgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjQtMDMtMjkiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDI0LTA0LTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA1LTA2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA1LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMjQtMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA4LTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDI0LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDI0LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDI1LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjUtMDMtMTciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDI1LTA0LTE4Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyNS0wNC0yMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wNS0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wNS0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhdHRsZSBvZiB0aGUgQm95bmUgKE9yYW5nZW1lbuKAmXMgRGF5KSIsImRhdGUiOiIyMDI1LTA3LTE0Iiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI1LTA4LTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDI1LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDI1LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfV19fQ== - recorded_at: Mon, 16 Jan 2023 15:28:45 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/Create_application/Completes_the_application_using_address_lookup.yml b/features/cassettes/Create_application/Completes_the_application_using_address_lookup.yml deleted file mode 100644 index 7211baf56c..0000000000 --- a/features/cassettes/Create_application/Completes_the_application_using_address_lookup.yml +++ /dev/null @@ -1,438 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:37 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"98\",\r\n \"lastupdate\" - : \"2023-01-13\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 16 Jan 2023 15:27:37 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:37 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - ece25a84e21af8822870cc73818be1c8 - X-Runtime: - - '0.048958' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:37 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:39 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - f6d84e6b9fa7582410ee92e8c738b0ba - X-Runtime: - - '0.029673' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:38 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:39 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 00b54fc2bccb88f16ab71ce3da811fec - X-Runtime: - - '0.014566' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:27:39 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:39 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 6721f5313ac4fa41682e0fda3d81338e - X-Runtime: - - '0.004935' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:39 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:40 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - a604dc0b200bbef7de2c8b2fc30b5b9a - X-Runtime: - - '0.004863' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:40 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/Create_application/Completes_the_application_using_address_lookup_with_multiple_proceedings.yml b/features/cassettes/Create_application/Completes_the_application_using_address_lookup_with_multiple_proceedings.yml deleted file mode 100644 index b0fadeff1d..0000000000 --- a/features/cassettes/Create_application/Completes_the_application_using_address_lookup_with_multiple_proceedings.yml +++ /dev/null @@ -1,1491 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:17 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"98\",\r\n \"lastupdate\" - : \"2023-01-13\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 16 Jan 2023 15:27:17 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:17 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - b66299b150f15a0be888867271d01a38 - X-Runtime: - - '0.033226' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:17 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:19 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c5cef1ab2a61f8a5f79044c062812f9c - X-Runtime: - - '0.027742' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:19 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:19 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 84f3df4876b0a94c6c66266166ce418b - X-Runtime: - - '0.075650' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:27:19 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:20 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 5967ac1f3e3daf12532678d3ef087db3 - X-Runtime: - - '0.106019' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:20 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:22 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - fb61aeb1d1ad11bd5790932e8a6b1671 - X-Runtime: - - '0.030152' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:21 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA005 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:22 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1297' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"91f645e50c379de35235d559d59b904e" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - abd2d9d1894da6b5da019b40a085e62c - X-Runtime: - - '0.015167' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA005","meaning":"Occupation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"occupation_order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:27:22 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:23 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 39c398b756a9d75b03da01f5f9679ab5 - X-Runtime: - - '0.030539' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:22 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:24 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 8986177ca5ddccc083b48054eab51a68 - X-Runtime: - - '0.027006' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:24 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA020 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:24 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1370' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"be2d4fc9764a92450c8a0ec6e0c94bb6" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 3e93039d484c0763c9f4b3a49b23a416 - X-Runtime: - - '0.022398' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA020","meaning":"FGM Protection Order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"fgm_protection_order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:27:24 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:25 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - ef1d43a97b41758f3ffe636d44aa774f - X-Runtime: - - '0.027825' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:24 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:26 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - a8420832ef86028e63d29c359cc13f51 - X-Runtime: - - '0.030508' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:26 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA005 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:26 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1297' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"91f645e50c379de35235d559d59b904e" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 17b64693b5129176875f07992545e31f - X-Runtime: - - '0.018089' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA005","meaning":"Occupation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"occupation_order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:27:26 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:26 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 4759a78d7d0455fbc5afee66f6667c2a - X-Runtime: - - '0.027987' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:26 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:27 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 922d8f3ad91ab8cf887da84ad8ae3fef - X-Runtime: - - '0.026681' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:27 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA003 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:28 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1350' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"7cc8172bde052549bc19a07db5d6e41d" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - e001ad125ec0a6b53524dc35a1ec8207 - X-Runtime: - - '0.026028' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA003","meaning":"Harassment - injunction","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"harassment_injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:27:28 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:28 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 8d9bad84362865e4f84426714fedbdb4 - X-Runtime: - - '0.005327' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:28 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:29 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 768211eed73c29892d363970ba6ebc0d - X-Runtime: - - '0.004945' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:29 GMT -- request: - method: get - uri: https://www.gov.uk/bank-holidays.json - body: - encoding: US-ASCII - string: '' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - User-Agent: - - Ruby - Host: - - www.gov.uk - response: - status: - code: 200 - message: OK - headers: - Connection: - - keep-alive - Content-Length: - - '17854' - Content-Type: - - application/json; charset=utf-8 - Server: - - nginx - Access-Control-Allow-Origin: - - "*" - Cache-Control: - - max-age=3600, public - Content-Security-Policy-Report-Only: - - 'default-src https: ''self'' *.publishing.service.gov.uk www.gov.uk *.dev.gov.uk; - img-src ''self'' data: *.publishing.service.gov.uk www.gov.uk *.dev.gov.uk - www.google-analytics.com ssl.google-analytics.com stats.g.doubleclick.net - www.googletagmanager.com www.region1.google-analytics.com region1.google-analytics.com - lux.speedcurve.com assets.digital.cabinet-office.gov.uk; script-src ''self'' - *.publishing.service.gov.uk www.gov.uk *.dev.gov.uk www.google-analytics.com - ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com - www.region1.google-analytics.com region1.google-analytics.com www.gstatic.com - www.signin.service.gov.uk *.ytimg.com www.youtube.com www.youtube-nocookie.com - hmrc-uk.digital.nuance.com ''unsafe-inline''; style-src ''self'' *.publishing.service.gov.uk - www.gov.uk *.dev.gov.uk www.gstatic.com ''unsafe-inline''; font-src ''self'' - *.publishing.service.gov.uk www.gov.uk *.dev.gov.uk data:; connect-src ''self'' - *.publishing.service.gov.uk www.gov.uk *.dev.gov.uk www.google-analytics.com - ssl.google-analytics.com stats.g.doubleclick.net www.googletagmanager.com - www.region1.google-analytics.com region1.google-analytics.com lux.speedcurve.com - www.tax.service.gov.uk hmrc-uk.digital.nuance.com hmpowebchat.klick2contact.com - omni.eckoh.uk www.signin.service.gov.uk; object-src ''none''; frame-src ''self'' - *.publishing.service.gov.uk www.gov.uk *.dev.gov.uk www.youtube.com www.youtube-nocookie.com; - report-uri https://csp-reporter.publishing.service.gov.uk/report' - Etag: - - W/"21c0301e75119f0665930ca20ca075aa" - Permissions-Policy: - - interest-cohort=() - Referrer-Policy: - - strict-origin-when-cross-origin - Strict-Transport-Security: - - max-age=31536000; preload - Via: - - 1.1 router, 1.1 varnish, 1.1 varnish - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - ALLOWALL - X-Request-Id: - - 22196980-117f-4718-b138-04ab7feab8c7 - Fastly-Backend-Name: - - origin - Accept-Ranges: - - bytes - Date: - - Mon, 16 Jan 2023 15:27:29 GMT - Age: - - '1142' - X-Served-By: - - cache-lon4283-LON - X-Cache: - - HIT, HIT - X-Cache-Hits: - - '2' - X-Timer: - - S1673882850.984559,VS0,VE0 - Vary: - - Accept-Encoding - body: - encoding: ASCII-8BIT - string: !binary |- - eyJlbmdsYW5kLWFuZC13YWxlcyI6eyJkaXZpc2lvbiI6ImVuZ2xhbmQtYW5kLXdhbGVzIiwiZXZlbnRzIjpbeyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAxOC0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMTgtMDMtMzAiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDE4LTA0LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTI4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA4LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDE4LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDE4LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDE5LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAxOS0wNC0xOSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMTktMDQtMjIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMTktMDUtMDYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMTktMDUtMjciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTdW1tZXIgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMTktMDgtMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMTktMTItMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMTktMTItMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJOZXcgWWVhcuKAmXMgRGF5IiwiZGF0ZSI6IjIwMjAtMDEtMDEiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIwLTA0LTEwIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyMC0wNC0xMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IChWRSBkYXkpIiwiZGF0ZSI6IjIwMjAtMDUtMDgiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjAtMDUtMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTdW1tZXIgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjAtMDgtMzEiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjAtMTItMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjAtMTItMjgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMS0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjEtMDQtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDIxLTA0LTA1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA1LTAzIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA1LTMxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA4LTMwIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDIxLTEyLTI3Iiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjEtMTItMjgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMi0wMS0wMyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAyMi0wNC0xNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMjItMDQtMTgiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjItMDUtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjItMDYtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJQbGF0aW51bSBKdWJpbGVlIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA2LTAzIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA4LTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmFuayBIb2xpZGF5IGZvciB0aGUgU3RhdGUgRnVuZXJhbCBvZiBRdWVlbiBFbGl6YWJldGggSUkiLCJkYXRlIjoiMjAyMi0wOS0xOSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjItMTItMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjItMTItMjciLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMy0wMS0wMiIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAyMy0wNC0wNyIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMjMtMDQtMTAiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjMtMDUtMDEiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCYW5rIGhvbGlkYXkgZm9yIHRoZSBjb3JvbmF0aW9uIG9mIEtpbmcgQ2hhcmxlcyBJSUkiLCJkYXRlIjoiMjAyMy0wNS0wOCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMy0wNS0yOSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMy0wOC0yOCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMy0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyMy0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyNC0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjQtMDMtMjkiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDI0LTA0LTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA1LTA2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA1LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA4LTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDI0LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDI0LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDI1LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAyNS0wNC0xOCIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMjUtMDQtMjEiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjUtMDUtMDUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjUtMDUtMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTdW1tZXIgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjUtMDgtMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjUtMTItMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjUtMTItMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9XX0sInNjb3RsYW5kIjp7ImRpdmlzaW9uIjoic2NvdGxhbmQiLCJldmVudHMiOlt7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDE4LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiMm5kIEphbnVhcnkiLCJkYXRlIjoiMjAxOC0wMS0wMiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMTgtMDMtMzAiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTI4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA4LTA2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgQW5kcmV34oCZcyBEYXkiLCJkYXRlIjoiMjAxOC0xMS0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAxOC0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAxOC0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAxOS0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMTktMDEtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDE5LTA0LTE5Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAxOS0wNS0wNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAxOS0wNS0yNyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAxOS0wOC0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IEFuZHJld+KAmXMgRGF5IiwiZGF0ZSI6IjIwMTktMTItMDIiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAxOS0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAxOS0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMC0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjAtMDEtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIwLTA0LTEwIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkgKFZFIGRheSkiLCJkYXRlIjoiMjAyMC0wNS0wOCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMC0wNS0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMC0wOC0wMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IEFuZHJld+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjAtMTEtMzAiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjAtMTItMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjAtMTItMjgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMS0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjEtMDEtMDQiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjEtMDQtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA1LTAzIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA1LTMxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIxLTA4LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgQW5kcmV34oCZcyBEYXkiLCJkYXRlIjoiMjAyMS0xMS0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMS0xMi0yNyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDIxLTEyLTI4Iiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJOZXcgWWVhcuKAmXMgRGF5IiwiZGF0ZSI6IjIwMjItMDEtMDMiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjItMDEtMDQiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjItMDQtMTUiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA1LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA2LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiUGxhdGludW0gSnViaWxlZSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMi0wNi0wMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMi0wOC0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhbmsgSG9saWRheSBmb3IgdGhlIFN0YXRlIEZ1bmVyYWwgb2YgUXVlZW4gRWxpemFiZXRoIElJIiwiZGF0ZSI6IjIwMjItMDktMTkiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3QgQW5kcmV34oCZcyBEYXkiLCJkYXRlIjoiMjAyMi0xMS0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyMi0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMi0xMi0yNyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDIzLTAxLTAyIiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiIybmQgSmFudWFyeSIsImRhdGUiOiIyMDIzLTAxLTAzIiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIzLTA0LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMy0wNS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhbmsgaG9saWRheSBmb3IgdGhlIGNvcm9uYXRpb24gb2YgS2luZyBDaGFybGVzIElJSSIsImRhdGUiOiIyMDIzLTA1LTA4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIzLTA1LTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIzLTA4LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgQW5kcmV34oCZcyBEYXkiLCJkYXRlIjoiMjAyMy0xMS0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMy0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyMy0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyNC0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjQtMDEtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDI0LTAzLTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNC0wNS0wNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNC0wNS0yNyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNC0wOC0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IEFuZHJld+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjQtMTItMDIiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyNC0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyNC0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyNS0wMS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IjJuZCBKYW51YXJ5IiwiZGF0ZSI6IjIwMjUtMDEtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDI1LTA0LTE4Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wNS0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wNS0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wOC0wNCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IEFuZHJld+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjUtMTItMDEiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyNS0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyNS0xMi0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX1dfSwibm9ydGhlcm4taXJlbGFuZCI6eyJkaXZpc2lvbiI6Im5vcnRoZXJuLWlyZWxhbmQiLCJldmVudHMiOlt7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDE4LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMTgtMDMtMTkiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMTgtMDMtMzAiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDE4LTA0LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA1LTI4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMTgtMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE4LTA4LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDE4LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDE4LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDE5LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMTktMDMtMTgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMTktMDQtMTkiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDE5LTA0LTIyIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE5LTA1LTA2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE5LTA1LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMTktMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDE5LTA4LTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDE5LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDE5LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDIwLTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjAtMDMtMTciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIwLTA0LTEwIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyMC0wNC0xMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IChWRSBkYXkpIiwiZGF0ZSI6IjIwMjAtMDUtMDgiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjAtMDUtMjUiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJCYXR0bGUgb2YgdGhlIEJveW5lIChPcmFuZ2VtZW7igJlzIERheSkiLCJkYXRlIjoiMjAyMC0wNy0xMyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMC0wOC0zMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMC0xMi0yNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJveGluZyBEYXkiLCJkYXRlIjoiMjAyMC0xMi0yOCIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDIxLTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjEtMDMtMTciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIxLTA0LTAyIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyMS0wNC0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMS0wNS0wMyIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMS0wNS0zMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhdHRsZSBvZiB0aGUgQm95bmUgKE9yYW5nZW1lbuKAmXMgRGF5KSIsImRhdGUiOiIyMDIxLTA3LTEyIiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IlN1bW1lciBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMS0wOC0zMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkNocmlzdG1hcyBEYXkiLCJkYXRlIjoiMjAyMS0xMi0yNyIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDIxLTEyLTI4Iiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJOZXcgWWVhcuKAmXMgRGF5IiwiZGF0ZSI6IjIwMjItMDEtMDMiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlN0IFBhdHJpY2vigJlzIERheSIsImRhdGUiOiIyMDIyLTAzLTE3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiR29vZCBGcmlkYXkiLCJkYXRlIjoiMjAyMi0wNC0xNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJFYXN0ZXIgTW9uZGF5IiwiZGF0ZSI6IjIwMjItMDQtMTgiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJFYXJseSBNYXkgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjItMDUtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJTcHJpbmcgYmFuayBob2xpZGF5IiwiZGF0ZSI6IjIwMjItMDYtMDIiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJQbGF0aW51bSBKdWJpbGVlIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA2LTAzIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMjItMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIyLTA4LTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmFuayBIb2xpZGF5IGZvciB0aGUgU3RhdGUgRnVuZXJhbCBvZiBRdWVlbiBFbGl6YWJldGggSUkiLCJkYXRlIjoiMjAyMi0wOS0xOSIsIm5vdGVzIjoiIiwiYnVudGluZyI6ZmFsc2V9LHsidGl0bGUiOiJCb3hpbmcgRGF5IiwiZGF0ZSI6IjIwMjItMTItMjYiLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJDaHJpc3RtYXMgRGF5IiwiZGF0ZSI6IjIwMjItMTItMjciLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ik5ldyBZZWFy4oCZcyBEYXkiLCJkYXRlIjoiMjAyMy0wMS0wMiIsIm5vdGVzIjoiU3Vic3RpdHV0ZSBkYXkiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjMtMDMtMTciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDIzLTA0LTA3Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyMy0wNC0xMCIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyMy0wNS0wMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhbmsgaG9saWRheSBmb3IgdGhlIGNvcm9uYXRpb24gb2YgS2luZyBDaGFybGVzIElJSSIsImRhdGUiOiIyMDIzLTA1LTA4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIzLTA1LTI5Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMjMtMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDIzLTA4LTI4Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDIzLTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDIzLTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDI0LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjQtMDMtMTgiLCJub3RlcyI6IlN1YnN0aXR1dGUgZGF5IiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6Ikdvb2QgRnJpZGF5IiwiZGF0ZSI6IjIwMjQtMDMtMjkiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiRWFzdGVyIE1vbmRheSIsImRhdGUiOiIyMDI0LTA0LTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiRWFybHkgTWF5IGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA1LTA2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3ByaW5nIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA1LTI3Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQmF0dGxlIG9mIHRoZSBCb3luZSAoT3JhbmdlbWVu4oCZcyBEYXkpIiwiZGF0ZSI6IjIwMjQtMDctMTIiLCJub3RlcyI6IiIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI0LTA4LTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDI0LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDI0LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiTmV3IFllYXLigJlzIERheSIsImRhdGUiOiIyMDI1LTAxLTAxIiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiU3QgUGF0cmlja+KAmXMgRGF5IiwiZGF0ZSI6IjIwMjUtMDMtMTciLCJub3RlcyI6IiIsImJ1bnRpbmciOnRydWV9LHsidGl0bGUiOiJHb29kIEZyaWRheSIsImRhdGUiOiIyMDI1LTA0LTE4Iiwibm90ZXMiOiIiLCJidW50aW5nIjpmYWxzZX0seyJ0aXRsZSI6IkVhc3RlciBNb25kYXkiLCJkYXRlIjoiMjAyNS0wNC0yMSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkVhcmx5IE1heSBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wNS0wNSIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IlNwcmluZyBiYW5rIGhvbGlkYXkiLCJkYXRlIjoiMjAyNS0wNS0yNiIsIm5vdGVzIjoiIiwiYnVudGluZyI6dHJ1ZX0seyJ0aXRsZSI6IkJhdHRsZSBvZiB0aGUgQm95bmUgKE9yYW5nZW1lbuKAmXMgRGF5KSIsImRhdGUiOiIyMDI1LTA3LTE0Iiwibm90ZXMiOiJTdWJzdGl0dXRlIGRheSIsImJ1bnRpbmciOmZhbHNlfSx7InRpdGxlIjoiU3VtbWVyIGJhbmsgaG9saWRheSIsImRhdGUiOiIyMDI1LTA4LTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQ2hyaXN0bWFzIERheSIsImRhdGUiOiIyMDI1LTEyLTI1Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfSx7InRpdGxlIjoiQm94aW5nIERheSIsImRhdGUiOiIyMDI1LTEyLTI2Iiwibm90ZXMiOiIiLCJidW50aW5nIjp0cnVlfV19fQ== - recorded_at: Mon, 16 Jan 2023 15:27:29 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:30 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - e7123e64eac90e704dd9f83d091d96a6 - X-Runtime: - - '0.005207' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:30 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:30 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 5bd7c599f846bd01f22fc89b28c0dde1 - X-Runtime: - - '0.005229' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:30 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:31 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 5f824c113ad0250d2f6993d6532d7788 - X-Runtime: - - '0.005190' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:31 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:32 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 2cd6ab923d95edfbd5dbc514eda3fdb2 - X-Runtime: - - '0.004941' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:32 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/Create_application/Completes_the_application_using_manual_address.yml b/features/cassettes/Create_application/Completes_the_application_using_manual_address.yml deleted file mode 100644 index 448ff14277..0000000000 --- a/features/cassettes/Create_application/Completes_the_application_using_manual_address.yml +++ /dev/null @@ -1,634 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=XX11XX - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:46 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=XX11XX\",\r\n - \ \"query\" : \"postcode=XX11XX\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 0,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"98\",\r\n \"lastupdate\" - : \"2023-01-13\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n }\r\n}" - recorded_at: Mon, 16 Jan 2023 15:27:46 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:47 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 2ddb8196cf68b5453eeb8ab4c60dc3bc - X-Runtime: - - '0.027507' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:47 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:49 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 81c5ee4986c20a4f48ba5ede06f52022 - X-Runtime: - - '0.029745' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:48 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:49 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c101ead42d24a34f0483f9850d68b079 - X-Runtime: - - '0.015778' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:27:49 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:49 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - a8cd5dc01a7ed6c61a002ec8c33d4dc3 - X-Runtime: - - '0.028030' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:49 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:50 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 2aaf43e01daa0adb9694fffa9209a484 - X-Runtime: - - '0.034121' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:27:50 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE014 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:50 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1291' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"0628cdb3a0d7f056459a0eb5a468514c" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 977a3559002c59adba8f385ff6c56ce5 - X-Runtime: - - '0.014424' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - eyJzdWNjZXNzIjp0cnVlLCJjY21zX2NvZGUiOiJTRTAxNCIsIm1lYW5pbmciOiJDaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIgKHJlc2lkZW5jZSkiLCJjY21zX2NhdGVnb3J5X2xhd19jb2RlIjoiTUFUIiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwibmFtZSI6ImNoaWxkX2FycmFuZ2VtZW50c19vcmRlcl9yZXNpZGVuY2UiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUiLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgiLCJjb3N0X2xpbWl0YXRpb25zIjp7InN1YnN0YW50aXZlIjp7InN0YXJ0X2RhdGUiOiIxOTcwLTAxLTAxIiwidmFsdWUiOiIyNTAwMC4wIn0sImRlbGVnYXRlZF9mdW5jdGlvbnMiOnsic3RhcnRfZGF0ZSI6IjIwMjEtMDktMTMiLCJ2YWx1ZSI6IjIyNTAuMCJ9fSwiZGVmYXVsdF9zY29wZV9saW1pdGF0aW9ucyI6eyJzdWJzdGFudGl2ZSI6eyJjb2RlIjoiRk0wNTkiLCJtZWFuaW5nIjoiRkhIIENoaWxkcmVuIiwiZGVzY3JpcHRpb24iOiJMaW1pdGVkIHRvIEZhbWlseSBIZWxwIChIaWdoZXIpIGFuZCB0byBhbGwgc3RlcHMgbmVjZXNzYXJ5IHRvIG5lZ290aWF0ZSBhbmQgY29uY2x1ZGUgYSBzZXR0bGVtZW50LiBUbyBpbmNsdWRlIHRoZSBpc3N1ZSBvZiBwcm9jZWVkaW5ncyBhbmQgcmVwcmVzZW50YXRpb24gaW4gdGhvc2UgcHJvY2VlZGluZ3Mgc2F2ZSBpbiByZWxhdGlvbiB0byBvciBhdCBhIGNvbnRlc3RlZCBmaW5hbCBoZWFyaW5nLiJ9LCJkZWxlZ2F0ZWRfZnVuY3Rpb25zIjp7ImNvZGUiOiJDVjExNyIsIm1lYW5pbmciOiJJbnRlcmltIG9yZGVyIGluYy4gcmV0dXJuIGRhdGUiLCJkZXNjcmlwdGlvbiI6IkxpbWl0ZWQgdG8gYWxsIHN0ZXBzIG5lY2Vzc2FyeSB0byBhcHBseSBmb3IgYW4gaW50ZXJpbSBvcmRlcjsgd2hlcmUgYXBwbGljYXRpb24gaXMgbWFkZSB3aXRob3V0IG5vdGljZSB0byBpbmNsdWRlIHJlcHJlc2VudGF0aW9uIG9uIHRoZSByZXR1cm4gZGF0ZS4ifX0sInNlcnZpY2VfbGV2ZWxzIjpbeyJsZXZlbCI6MSwibmFtZSI6IkZhbWlseSBIZWxwIChIaWdoZXIpIiwic3RhZ2UiOjEsInByb2NlZWRpbmdfZGVmYXVsdCI6dHJ1ZX0seyJsZXZlbCI6MywibmFtZSI6IkZ1bGwgUmVwcmVzZW50YXRpb24iLCJzdGFnZSI6OCwicHJvY2VlZGluZ19kZWZhdWx0IjpmYWxzZX1dfQ== - recorded_at: Mon, 16 Jan 2023 15:27:50 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:51 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - b9a2a4f02dc329181044f3e1eecb3430 - X-Runtime: - - '0.005068' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:51 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:52 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - d7c458f6ae17ed9bb84b3651a7d1677e - X-Runtime: - - '0.005318' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:51 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:53 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - dc759d32ff2d986d8a1b0b6cbdaaea6a - X-Runtime: - - '0.004924' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:53 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:53 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 8f408e4ed57ae80dc2a64991b4379987 - X-Runtime: - - '0.005078' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:27:53 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/Create_application/I_am_instructed_to_use_CCMS_on_the_passported_journey_with_an_applicant_does_not_receive_benefits.yml b/features/cassettes/Create_application/I_am_instructed_to_use_CCMS_on_the_passported_journey_with_an_applicant_does_not_receive_benefits.yml deleted file mode 100644 index 82568b5265..0000000000 --- a/features/cassettes/Create_application/I_am_instructed_to_use_CCMS_on_the_passported_journey_with_an_applicant_does_not_receive_benefits.yml +++ /dev/null @@ -1,438 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:17 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"98\",\r\n \"lastupdate\" - : \"2023-01-13\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 16 Jan 2023 15:28:17 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:18 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - bc026bae56eb5d2bdf3c2d3ffcbb945a - X-Runtime: - - '0.026150' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:28:18 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:20 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 835d084e7f873b1b58801a11900f65c5 - X-Runtime: - - '0.185979' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:28:20 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:20 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 227597819cc55bb7e223890e2a7b44ce - X-Runtime: - - '0.015867' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:28:20 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:21 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - cf959d70f61eedbc6a5056ba936588f3 - X-Runtime: - - '0.005323' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:28:20 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:21 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 0cc48801c5c50ea7a3124e475780f976 - X-Runtime: - - '0.005217' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:28:21 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/Create_application/I_can_see_that_the_applicant_does_not_receive_benefits.yml b/features/cassettes/Create_application/I_can_see_that_the_applicant_does_not_receive_benefits.yml deleted file mode 100644 index d567dcf196..0000000000 --- a/features/cassettes/Create_application/I_can_see_that_the_applicant_does_not_receive_benefits.yml +++ /dev/null @@ -1,438 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:10 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"98\",\r\n \"lastupdate\" - : \"2023-01-13\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 16 Jan 2023 15:28:10 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:11 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 60e46555f1870242d41e8fa76358a50a - X-Runtime: - - '0.027329' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:28:11 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:12 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 97c1ad587cf7bae2dc937e86c009f4ce - X-Runtime: - - '0.026821' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:28:12 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:13 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - bc81edde7775e2e14d70f21b4dad3245 - X-Runtime: - - '0.016327' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:28:12 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:13 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 8a7fb93a23da54369fa55239339657de - X-Runtime: - - '0.005632' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:28:13 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:14 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - d80df7e7664e59f4172b47b97f66bcd1 - X-Runtime: - - '0.007729' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:28:13 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/Create_application/I_can_see_that_the_applicant_receives_benefits.yml b/features/cassettes/Create_application/I_can_see_that_the_applicant_receives_benefits.yml deleted file mode 100644 index 91bec8fff0..0000000000 --- a/features/cassettes/Create_application/I_can_see_that_the_applicant_receives_benefits.yml +++ /dev/null @@ -1,438 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:27:59 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"98\",\r\n \"lastupdate\" - : \"2023-01-13\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 16 Jan 2023 15:27:59 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:00 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 19978d5af524ef8d8a043192535b8c8a - X-Runtime: - - '0.029719' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:28:00 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:01 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c3cc8f0d737c6afdf9f9bcb6422686c5 - X-Runtime: - - '0.029450' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Mon, 16 Jan 2023 15:28:01 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:01 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - e22e60051b3baebeefc61ca20e16b0b1 - X-Runtime: - - '0.016057' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 16 Jan 2023 15:28:01 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:02 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - b8019bf1208a12813e9d8c22fb46c000 - X-Runtime: - - '0.006208' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:28:02 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 16 Jan 2023 15:28:03 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Vary: - - Accept, Origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - a92cf401fc25369745b216a3d59da6d3 - X-Runtime: - - '0.005044' - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 16 Jan 2023 15:28:03 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/Emergency_cost_override/Provider_is_prompted_to_override_emergency_cost_limitation.yml b/features/cassettes/Emergency_cost_override/Provider_is_prompted_to_override_emergency_cost_limitation.yml index c2259145bd..4b99dbf166 100644 --- a/features/cassettes/Emergency_cost_override/Provider_is_prompted_to_override_emergency_cost_limitation.yml +++ b/features/cassettes/Emergency_cost_override/Provider_is_prompted_to_override_emergency_cost_limitation.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:46 GMT + - Tue, 20 Aug 2024 12:14:31 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:11:46 GMT + recorded_at: Tue, 20 Aug 2024 12:14:31 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:46 GMT + - Tue, 20 Aug 2024 12:14:32 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - e00c258433df2ccf3851825fd56e17a3 + - 2b302efca06f6c44d929f2cc3ce2805e x-runtime: - - '0.019942' + - '0.023814' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:11:46 GMT + recorded_at: Tue, 20 Aug 2024 12:14:32 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:48 GMT + - Tue, 20 Aug 2024 12:14:34 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 2bbc4250b101af4f1c9924213f2e8fd5 + - 5e224664803925328c843930139f4d5c x-runtime: - - '0.020315' + - '0.028267' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:11:48 GMT + recorded_at: Tue, 20 Aug 2024 12:14:34 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:48 GMT + - Tue, 20 Aug 2024 12:14:34 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 1a6e1a5a736e79dd32af5e212aa066e1 + - 616f3aa636a16c08596b9a3e9ffa60d6 x-runtime: - - '0.010967' + - '0.012502' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:11:48 GMT + recorded_at: Tue, 20 Aug 2024 12:14:34 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:49 GMT + - Tue, 20 Aug 2024 12:14:36 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 5a8c346fa64ee3d99222297d6047f4e0 + - 278c678c74d794e9d68f6293725e32a5 x-runtime: - - '0.003867' + - '0.006422' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:11:49 GMT + recorded_at: Tue, 20 Aug 2024 12:14:35 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:49 GMT + - Tue, 20 Aug 2024 12:14:36 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 8c35538103a857b335635d566b6afec8 + - 188f19fdc62afbb4bff7f155ca46302a x-runtime: - - '0.004454' + - '0.003857' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:11:49 GMT + recorded_at: Tue, 20 Aug 2024 12:14:36 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:51 GMT + - Tue, 20 Aug 2024 12:14:38 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 9f2a3a02d662a30ef83199b14c08659e + - f00dd17788a561cb6a01a586e5dadd4e x-runtime: - - '0.007834' + - '0.007476' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -790,7 +723,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:11:51 GMT + recorded_at: Tue, 20 Aug 2024 12:14:38 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -801,14 +734,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:51 GMT + - Tue, 20 Aug 2024 12:14:39 GMT content-type: - application/json; charset=utf-8 content-length: @@ -832,9 +765,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 5f9487e345fc3600a3c5fb39bb8987a5 + - 93166d0391c9ffc1ee26ee87a6ab2283 x-runtime: - - '0.007749' + - '0.007651' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -844,7 +777,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:11:51 GMT + recorded_at: Tue, 20 Aug 2024 12:14:39 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -855,14 +788,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:52 GMT + - Tue, 20 Aug 2024 12:14:40 GMT content-type: - application/json; charset=utf-8 content-length: @@ -886,9 +819,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 20a8395a1d01251b3c7f2bbbcc14307f + - '0329c0dc121bb5b4895b5c59470dcfb4' x-runtime: - - '0.008264' + - '0.011257' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -901,7 +834,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:11:51 GMT + recorded_at: Tue, 20 Aug 2024 12:14:39 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -912,14 +845,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:11:52 GMT + - Tue, 20 Aug 2024 12:14:40 GMT content-type: - application/json; charset=utf-8 content-length: @@ -943,9 +876,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - e957f005f4ecbe6eb4c8e833fc54a99f + - 0137125e45aa1ab04b9b2cf807fb69b8 x-runtime: - - '0.007888' + - '0.009375' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -958,5 +891,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:11:52 GMT + recorded_at: Tue, 20 Aug 2024 12:14:40 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Linking_cases_back_button_use/Complete_flow_reversion_with_back_button.yml b/features/cassettes/Linking_cases_back_button_use/Complete_flow_reversion_with_back_button.yml index f486b61093..ac7300381d 100644 --- a/features/cassettes/Linking_cases_back_button_use/Complete_flow_reversion_with_back_button.yml +++ b/features/cassettes/Linking_cases_back_button_use/Complete_flow_reversion_with_back_button.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.0 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Mon, 13 May 2024 10:54:46 GMT + - Tue, 20 Aug 2024 12:29:28 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"109\",\r\n \"lastupdate\" - : \"2024-05-10\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 13 May 2024 10:54:46 GMT + recorded_at: Tue, 20 Aug 2024 12:29:27 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.0 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Mon, 13 May 2024 10:54:53 GMT + - Tue, 20 Aug 2024 12:29:34 GMT content-type: - application/json; charset=utf-8 content-length: - - '12573' + - '17643' connection: - keep-alive x-frame-options: @@ -172,137 +171,152 @@ http_interactions: vary: - Accept, Origin etag: - - W/"dd6907b8448bc8458adb599124824756" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 4953e9dec17813a04eb4dcc84aa37b5a + - 1a08f1ba953ee15464a814d0c88ab658 x-runtime: - - '0.065844' + - '0.033329' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court injunction","description":"to - be represented on an application for an injunction, order or declaration under - the inherent jurisdiction of the court.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to be represented on an application, following breach, for an amendment to an enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues + Ord-S8","description":"to be represented on an application to vary or discharge + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge + - Part IV","description":"to be represented on an application to extend, vary + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to be represented on an application, following breach, for an amendment to an enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to + be represented on an application for committal and for an enforcement order + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps + Order-Appeal-S8","description":"to be represented on an application to vary + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a prohibited steps order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"}]' - recorded_at: Mon, 13 May 2024 10:54:53 GMT + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"}]' + recorded_at: Tue, 20 Aug 2024 12:29:34 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Linking_one_application_to_another_application/I_choose_not_to_link_another_case_s_details.yml b/features/cassettes/Linking_one_application_to_another_application/I_choose_not_to_link_another_case_s_details.yml deleted file mode 100644 index 9721140205..0000000000 --- a/features/cassettes/Linking_one_application_to_another_application/I_choose_not_to_link_another_case_s_details.yml +++ /dev/null @@ -1,306 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.9.0 - response: - status: - code: 200 - message: OK - headers: - date: - - Tue, 05 Mar 2024 17:31:52 GMT - content-type: - - application/json;charset=UTF-8 - transfer-encoding: - - chunked - connection: - - keep-alive - request-context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - vary: - - Origin,Accept-Encoding,key - omse-category: - - premium - omse-transaction-count: - - '60' - omse-premium-count: - - '0' - strict-transport-security: - - max-age=31536000; includeSubDomains - body: - encoding: UTF-8 - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"108\",\r\n \"lastupdate\" - : \"2024-03-04\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 05 Mar 2024 17:31:52 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.9.0 - response: - status: - code: 200 - message: OK - headers: - date: - - Tue, 05 Mar 2024 17:31:53 GMT - content-type: - - application/json; charset=utf-8 - content-length: - - '12573' - connection: - - keep-alive - x-frame-options: - - SAMEORIGIN - x-xss-protection: - - '0' - x-content-type-options: - - nosniff - x-permitted-cross-domain-policies: - - none - referrer-policy: - - strict-origin-when-cross-origin - vary: - - Accept, Origin - etag: - - W/"dd6907b8448bc8458adb599124824756" - cache-control: - - max-age=0, private, must-revalidate - x-request-id: - - 804c91902fc3dadc58746b085d94d1ab - x-runtime: - - '0.017517' - strict-transport-security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court injunction","description":"to - be represented on an application for an injunction, order or declaration under - the inherent jurisdiction of the court.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"}]' - recorded_at: Tue, 05 Mar 2024 17:31:53 GMT -recorded_with: VCR 6.2.0 diff --git a/features/cassettes/No_national_insurance_number_for_applicant/I_can_see_that_the_applicant_receives_benefits.yml b/features/cassettes/No_national_insurance_number_for_applicant/I_can_see_that_the_applicant_receives_benefits.yml index c6cb8c203f..d8df4b5726 100644 --- a/features/cassettes/No_national_insurance_number_for_applicant/I_can_see_that_the_applicant_receives_benefits.yml +++ b/features/cassettes/No_national_insurance_number_for_applicant/I_can_see_that_the_applicant_receives_benefits.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:12:47 GMT + - Tue, 20 Aug 2024 12:17:03 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:12:47 GMT + recorded_at: Tue, 20 Aug 2024 12:17:03 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:12:47 GMT + - Tue, 20 Aug 2024 12:17:04 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 26fb91b48bd8f072b62c9ce712571e69 + - 5fef8f5faa47d8e9f53f98881119b2f5 x-runtime: - - '0.022758' + - '0.026978' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:12:47 GMT + recorded_at: Tue, 20 Aug 2024 12:17:04 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:12:49 GMT + - Tue, 20 Aug 2024 12:17:06 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6bd055358c55b8f069b1d79ca2e60f0f + - b2c0163ceea0e7534b2e559c441349a5 x-runtime: - - '0.020396' + - '0.028223' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:12:49 GMT + recorded_at: Tue, 20 Aug 2024 12:17:05 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:12:49 GMT + - Tue, 20 Aug 2024 12:17:06 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - '0603327910643c68b5fa8c3d9f1d86b7' + - 2821b3a4810d794e6bdec357f9063895 x-runtime: - - '0.008657' + - '0.012282' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:12:49 GMT + recorded_at: Tue, 20 Aug 2024 12:17:06 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:12:50 GMT + - Tue, 20 Aug 2024 12:17:07 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - cca98d353b792f53fff1417a622a43bc + - a7cf48cc077371c5641e19b4ecba9d78 x-runtime: - - '0.003878' + - '0.003861' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:12:50 GMT + recorded_at: Tue, 20 Aug 2024 12:17:07 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:12:51 GMT + - Tue, 20 Aug 2024 12:17:08 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 1e455d6de0254c51b9fee625673067fe + - 762e895f85537c8955ad9f75e4fca18f x-runtime: - - '0.004222' + - '0.004045' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:12:51 GMT + recorded_at: Tue, 20 Aug 2024 12:17:07 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:12:52 GMT + - Tue, 20 Aug 2024 12:17:09 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 85ce40aec1dc4823d2c8d82e7e7e6425 + - 8a0e8b7f9345ec5f59c9c752510f5a21 x-runtime: - - '0.007233' + - '0.007943' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -793,7 +726,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:12:52 GMT + recorded_at: Tue, 20 Aug 2024 12:17:09 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -804,14 +737,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:12:52 GMT + - Tue, 20 Aug 2024 12:17:10 GMT content-type: - application/json; charset=utf-8 content-length: @@ -835,9 +768,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 54df8dddafe80c5dff6382c689e60140 + - 2cbd8cc16cbf6f6bd42add2de030c507 x-runtime: - - '0.008592' + - '0.010168' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -850,5 +783,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:12:52 GMT + recorded_at: Tue, 20 Aug 2024 12:17:10 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Non-means-tested_applicant_journey_with_use_of_delegation_functions/Completes_a_minimal_application_for_applicant_that_was_under_18_at_time_of_earliest_delegated_function.yml b/features/cassettes/Non-means-tested_applicant_journey_with_use_of_delegation_functions/Completes_a_minimal_application_for_applicant_that_was_under_18_at_time_of_earliest_delegated_function.yml index 922cfdfcba..4a3963ec2f 100644 --- a/features/cassettes/Non-means-tested_applicant_journey_with_use_of_delegation_functions/Completes_a_minimal_application_for_applicant_that_was_under_18_at_time_of_earliest_delegated_function.yml +++ b/features/cassettes/Non-means-tested_applicant_journey_with_use_of_delegation_functions/Completes_a_minimal_application_for_applicant_that_was_under_18_at_time_of_earliest_delegated_function.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:15 GMT + - Tue, 20 Aug 2024 12:26:43 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:13:15 GMT + recorded_at: Tue, 20 Aug 2024 12:26:42 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:16 GMT + - Tue, 20 Aug 2024 12:26:43 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - b9a249d579541fa29a436cb37f485baf + - 5f749fdb2e185fc32e6052eeb9124371 x-runtime: - - '0.020774' + - '0.022242' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:13:16 GMT + recorded_at: Tue, 20 Aug 2024 12:26:43 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:18 GMT + - Tue, 20 Aug 2024 12:26:45 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - ef9660138b1872e554bd56cacb1757e7 + - 48f0eddb42088c4a2cd0814c6ff93820 x-runtime: - - '0.022055' + - '0.027081' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:13:17 GMT + recorded_at: Tue, 20 Aug 2024 12:26:44 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:18 GMT + - Tue, 20 Aug 2024 12:26:45 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6160142f8f6210fcee996fb924bc136f + - 6ad1fd44e4c550b50265eb5b717e0d5a x-runtime: - - '0.008093' + - '0.012389' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:13:18 GMT + recorded_at: Tue, 20 Aug 2024 12:26:45 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:19 GMT + - Tue, 20 Aug 2024 12:26:46 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 00aa0f6eb792b0a3513348b653f87348 + - bd4c937b941cd273456ab9304e01386e x-runtime: - - '0.003547' + - '0.004309' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:13:18 GMT + recorded_at: Tue, 20 Aug 2024 12:26:46 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:19 GMT + - Tue, 20 Aug 2024 12:26:46 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - eadba03b65a690a64c895b122f080bad + - 5e40f94e472dde7ebc4f81fff0693536 x-runtime: - - '0.003904' + - '0.003758' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:13:19 GMT + recorded_at: Tue, 20 Aug 2024 12:26:46 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:20 GMT + - Tue, 20 Aug 2024 12:26:47 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - d15d49e2f65018d74db1aac1fa29c26b + - 34d26de222529fd727399bb4f26a9106 x-runtime: - - '0.010617' + - '0.006898' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -790,7 +723,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:13:20 GMT + recorded_at: Tue, 20 Aug 2024 12:26:47 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -801,14 +734,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:21 GMT + - Tue, 20 Aug 2024 12:26:48 GMT content-type: - application/json; charset=utf-8 content-length: @@ -832,9 +765,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 7fd1fc87efd9261520012bbb267f1cb0 + - 7235188a6987c871b72cae9eab40ab14 x-runtime: - - '0.007464' + - '0.007187' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -844,7 +777,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:13:21 GMT + recorded_at: Tue, 20 Aug 2024 12:26:48 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -855,14 +788,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:21 GMT + - Tue, 20 Aug 2024 12:26:48 GMT content-type: - application/json; charset=utf-8 content-length: @@ -886,9 +819,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 65d0be43365fdda906f7ee0eacbe21ec + - 9249292c4680bc16b9d3119041e944f1 x-runtime: - - '0.006706' + - '0.008766' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -901,7 +834,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:13:21 GMT + recorded_at: Tue, 20 Aug 2024 12:26:48 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -912,14 +845,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:22 GMT + - Tue, 20 Aug 2024 12:26:49 GMT content-type: - application/json; charset=utf-8 content-length: @@ -943,9 +876,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 3a97c2f17860514f20b0e0461e73fd28 + - 2bd4e6f3304555b922efcccf6ff9577c x-runtime: - - '0.007509' + - '0.008424' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -958,25 +891,25 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:13:22 GMT + recorded_at: Tue, 20 Aug 2024 12:26:49 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/civil_merits_questions body: encoding: UTF-8 - string: '{"request_id":"01ebb1d1-3e03-4a06-b224-6970ee0c1f2a","proceedings":[{"ccms_code":"DA004","delegated_functions_used":true,"client_involvement_type":"A"}]}' + string: '{"request_id":"13d7cfe9-6859-4191-96e4-71f6ab6660e0","proceedings":[{"ccms_code":"DA004","delegated_functions_used":true,"client_involvement_type":"A"}]}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:25 GMT + - Tue, 20 Aug 2024 12:26:52 GMT content-type: - application/json; charset=utf-8 content-length: @@ -996,17 +929,17 @@ http_interactions: vary: - Accept, Origin etag: - - W/"d70f0b747557f7e0ffed5eb817f62ba2" + - W/"f375b406f4a9fd04efc10104e983b6c4" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 105cff40c353489aacbf814a5c560c0b + - 0200c574684be9449fd694e913aa4dee x-runtime: - - '0.041323' + - '0.064350' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '{"request_id":"01ebb1d1-3e03-4a06-b224-6970ee0c1f2a","success":true,"application":{"tasks":{"latest_incident_details":[],"opponent_name":[],"opponent_mental_capacity":[],"domestic_abuse_summary":[],"statement_of_case":[]}},"proceedings":[{"ccms_code":"DA004","tasks":{"chances_of_success":[]}}]}' - recorded_at: Tue, 02 Jul 2024 09:13:25 GMT + string: '{"request_id":"13d7cfe9-6859-4191-96e4-71f6ab6660e0","success":true,"application":{"tasks":{"latest_incident_details":[],"opponent_name":[],"opponent_mental_capacity":[],"domestic_abuse_summary":[],"statement_of_case":[]}},"proceedings":[{"ccms_code":"DA004","tasks":{"chances_of_success":[]}}]}' + recorded_at: Tue, 20 Aug 2024 12:26:52 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Non-means-tested_applicant_journey_without_use_of_delegation_functions/Completes_an_application_for_applicant_that_is_under_18.yml b/features/cassettes/Non-means-tested_applicant_journey_without_use_of_delegation_functions/Completes_an_application_for_applicant_that_is_under_18.yml index 2227fba58c..3970e292d7 100644 --- a/features/cassettes/Non-means-tested_applicant_journey_without_use_of_delegation_functions/Completes_an_application_for_applicant_that_is_under_18.yml +++ b/features/cassettes/Non-means-tested_applicant_journey_without_use_of_delegation_functions/Completes_an_application_for_applicant_that_is_under_18.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:29 GMT + - Tue, 20 Aug 2024 12:26:57 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:13:29 GMT + recorded_at: Tue, 20 Aug 2024 12:26:57 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:30 GMT + - Tue, 20 Aug 2024 12:26:58 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 03ec3abd5cf22d0141249c925173a848 + - 550c272b1759e8e8cb8eb61d3385ee31 x-runtime: - - '0.021648' + - '0.025437' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:13:30 GMT + recorded_at: Tue, 20 Aug 2024 12:26:57 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:31 GMT + - Tue, 20 Aug 2024 12:26:59 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - a151b5725c9b4118e0bc8c6caf441887 + - b574af077cb8230ad44df7ec6ee3c9b3 x-runtime: - - '0.020699' + - '0.023425' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:13:31 GMT + recorded_at: Tue, 20 Aug 2024 12:26:59 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:31 GMT + - Tue, 20 Aug 2024 12:26:59 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 4ff39b5542b32c9088a1e90689f84a2b + - ef242c8201bd2775b769a440468d8d7f x-runtime: - - '0.010006' + - '0.014724' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:13:31 GMT + recorded_at: Tue, 20 Aug 2024 12:26:59 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:32 GMT + - Tue, 20 Aug 2024 12:27:00 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - e83e59066c390599bf0213f5e12a9fef + - 61cf46ea2e1fef3fcf69c1b55c0e1a86 x-runtime: - - '0.004754' + - '0.004303' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:13:32 GMT + recorded_at: Tue, 20 Aug 2024 12:27:00 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:33 GMT + - Tue, 20 Aug 2024 12:27:01 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 9ff537939790b44fe972d957b7ed08ac + - 5f3309d5f10b83654d646c477897152f x-runtime: - - '0.005335' + - '0.003766' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:13:33 GMT + recorded_at: Tue, 20 Aug 2024 12:27:00 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:34 GMT + - Tue, 20 Aug 2024 12:27:01 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - aa17455066529e807d263a77e96cb5d2 + - b7b0e1117ff4861fc6cbe541d6fd768b x-runtime: - - '0.007794' + - '0.010235' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -793,7 +726,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:13:34 GMT + recorded_at: Tue, 20 Aug 2024 12:27:01 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -804,14 +737,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:34 GMT + - Tue, 20 Aug 2024 12:27:02 GMT content-type: - application/json; charset=utf-8 content-length: @@ -835,9 +768,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - b26950042ad343533ad4c420246a5861 + - 6bd5427f219f68da42a3e6cf5165e0d6 x-runtime: - - '0.007454' + - '0.007943' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -850,25 +783,25 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:13:34 GMT + recorded_at: Tue, 20 Aug 2024 12:27:02 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/civil_merits_questions body: encoding: UTF-8 - string: '{"request_id":"3b255c4b-a5c5-4902-952a-ca472afa65b9","proceedings":[{"ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"}]}' + string: '{"request_id":"e7983452-6568-4fe1-9d3a-aa19ea2f4eb2","proceedings":[{"ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"}]}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:37 GMT + - Tue, 20 Aug 2024 12:27:05 GMT content-type: - application/json; charset=utf-8 content-length: @@ -888,17 +821,17 @@ http_interactions: vary: - Accept, Origin etag: - - W/"da19fdae7565ac9185dff3916a166d00" + - W/"0381a5fd4b7d74c24567e7598e156c8e" cache-control: - max-age=0, private, must-revalidate x-request-id: - - c0bb326f405bac435de3b717d8ad11a5 + - 571e161a0d016a8a3a12a8bf7d4d0e1d x-runtime: - - '0.054837' + - '0.094690' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '{"request_id":"3b255c4b-a5c5-4902-952a-ca472afa65b9","success":true,"application":{"tasks":{"latest_incident_details":[],"opponent_name":[],"opponent_mental_capacity":[],"domestic_abuse_summary":[],"statement_of_case":[]}},"proceedings":[{"ccms_code":"DA004","tasks":{"chances_of_success":[]}}]}' - recorded_at: Tue, 02 Jul 2024 09:13:37 GMT + string: '{"request_id":"e7983452-6568-4fe1-9d3a-aa19ea2f4eb2","success":true,"application":{"tasks":{"latest_incident_details":[],"opponent_name":[],"opponent_mental_capacity":[],"domestic_abuse_summary":[],"statement_of_case":[]}},"proceedings":[{"ccms_code":"DA004","tasks":{"chances_of_success":[]}}]}' + recorded_at: Tue, 20 Aug 2024 12:27:05 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Pathways_from_check_your_answers/I_go_back_and_change_the_proceedings_on_an_application_with_multiple_proceedings.yml b/features/cassettes/Pathways_from_check_your_answers/I_go_back_and_change_the_proceedings_on_an_application_with_multiple_proceedings.yml index 740f0fa15d..3814241b84 100644 --- a/features/cassettes/Pathways_from_check_your_answers/I_go_back_and_change_the_proceedings_on_an_application_with_multiple_proceedings.yml +++ b/features/cassettes/Pathways_from_check_your_answers/I_go_back_and_change_the_proceedings_on_an_application_with_multiple_proceedings.yml @@ -1,27 +1,27 @@ --- http_interactions: - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:24 GMT + - Tue, 20 Aug 2024 12:18:16 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -37,209 +37,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - ed1823d9c4fbe56bec30483e57bc0dda + - a8752d6c9e10a8ef4d072e11a57a1f56 x-runtime: - - '0.020871' + - '0.029928' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:16:24 GMT + recorded_at: Tue, 20 Aug 2024 12:18:16 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:25 GMT + - Tue, 20 Aug 2024 12:18:18 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -255,187 +222,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - f6126358e2b946db94b832d0cdd03b80 + - 9050358451181f5e03ab650464618611 x-runtime: - - '0.020173' + - '0.029574' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:16:25 GMT + recorded_at: Tue, 20 Aug 2024 12:18:18 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -446,14 +380,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:26 GMT + - Tue, 20 Aug 2024 12:18:19 GMT content-type: - application/json; charset=utf-8 content-length: @@ -477,9 +411,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 35bd6bba3357dae0cee421262d121c49 + - fb88b56902f42dce42cd851f01724860 x-runtime: - - '0.009816' + - '0.019104' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -497,29 +431,29 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:16:25 GMT + recorded_at: Tue, 20 Aug 2024 12:18:18 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA004","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:26 GMT + - Tue, 20 Aug 2024 12:18:20 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '15048' connection: - keep-alive x-frame-options: @@ -535,209 +469,159 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"addebffb1ccfb2ce89909f324f0dbddc" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 833756a8e6a75ca45950fa48d97ea500 + - 28f7cefedd676ca9bc8916f4050a2372 x-runtime: - - '0.020366' + - '0.047155' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:16:26 GMT + recorded_at: Tue, 20 Aug 2024 12:18:20 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA004","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:28 GMT + - Tue, 20 Aug 2024 12:18:22 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '15048' connection: - keep-alive x-frame-options: @@ -753,209 +637,159 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"addebffb1ccfb2ce89909f324f0dbddc" cache-control: - max-age=0, private, must-revalidate x-request-id: - - f299eda389fafc4301fb1bb01f8c0f1a + - e3913b7b56209d9808f4e8d51f7a04e3 x-runtime: - - '0.020803' + - '0.078474' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:16:28 GMT + recorded_at: Tue, 20 Aug 2024 12:18:22 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA004","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:29 GMT + - Tue, 20 Aug 2024 12:18:24 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '15048' connection: - keep-alive x-frame-options: @@ -971,187 +805,137 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"addebffb1ccfb2ce89909f324f0dbddc" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 033b9adba0a95acab735f15280205388 + - 0e2e32987caf887603a5b70f2bbe368b x-runtime: - - '0.026724' + - '0.069146' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:16:29 GMT + recorded_at: Tue, 20 Aug 2024 12:18:23 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE013 @@ -1162,14 +946,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:29 GMT + - Tue, 20 Aug 2024 12:18:24 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1193,9 +977,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - dedb3c39868d6e22860570c85c4f216a + - f037b58b0587e2d57125f5b4b6797f2e x-runtime: - - '0.011593' + - '0.011322' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1214,7 +998,7 @@ http_interactions: representation on the return date."}},"service_levels":[{"level":1,"name":"Family Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Tue, 02 Jul 2024 09:16:29 GMT + recorded_at: Tue, 20 Aug 2024 12:18:24 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -1225,14 +1009,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:30 GMT + - Tue, 20 Aug 2024 12:18:25 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1256,9 +1040,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 7adcf6606f01238ce9a588578382284c + - f8f72ceb25bb7f2420ec4a55a5c273d0 x-runtime: - - '0.004282' + - '0.003278' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1266,7 +1050,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:16:30 GMT + recorded_at: Tue, 20 Aug 2024 12:18:25 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -1277,14 +1061,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:31 GMT + - Tue, 20 Aug 2024 12:18:26 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1308,9 +1092,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 1c81bd765f65d596dc358b99faec9c3f + - fc138b52c33e1e657e1991c0a23c1f24 x-runtime: - - '0.003907' + - '0.004314' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1318,7 +1102,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:16:31 GMT + recorded_at: Tue, 20 Aug 2024 12:18:26 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1329,14 +1113,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:32 GMT + - Tue, 20 Aug 2024 12:18:27 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1360,9 +1144,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - b798e91536c40cf761adf6a84dac2434 + - 22b8e9e8100329d2c9990521e1c451b9 x-runtime: - - '0.006295' + - '0.007388' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1375,7 +1159,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:16:32 GMT + recorded_at: Tue, 20 Aug 2024 12:18:27 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1386,14 +1170,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:32 GMT + - Tue, 20 Aug 2024 12:18:28 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1417,9 +1201,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - f498797ac1dc133dd9926e051b80fae7 + - 1b4b02e6e60d6343650706cbdb043606 x-runtime: - - '0.006529' + - '0.008522' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1432,7 +1216,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:16:32 GMT + recorded_at: Tue, 20 Aug 2024 12:18:28 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE013 @@ -1443,14 +1227,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:33 GMT + - Tue, 20 Aug 2024 12:18:28 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1474,9 +1258,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - ffc696157a3658f7f3c13109f180bfe2 + - ade8ea35a7f7d0c99af36b82b7411ece x-runtime: - - '0.004227' + - '0.005251' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1484,7 +1268,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:16:33 GMT + recorded_at: Tue, 20 Aug 2024 12:18:28 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE013 @@ -1495,14 +1279,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:33 GMT + - Tue, 20 Aug 2024 12:18:29 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1526,9 +1310,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6146618ac3555605b0e914e0f524c20c + - fc175f8e36d2595e6305b464150a2257 x-runtime: - - '0.004510' + - '0.003826' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1536,7 +1320,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:16:33 GMT + recorded_at: Tue, 20 Aug 2024 12:18:29 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1547,14 +1331,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:34 GMT + - Tue, 20 Aug 2024 12:18:30 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1578,9 +1362,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 49c3f91fd1e9a3b255a5bbbde3221310 + - 5181f04472de04dd7e1b4ed060746bcf x-runtime: - - '0.007532' + - '0.008889' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1590,7 +1374,7 @@ http_interactions: to Family Help (Higher) and to all steps necessary to negotiate and conclude a settlement. To include the issue of proceedings and representation in those proceedings save in relation to or at a contested final hearing.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:16:34 GMT + recorded_at: Tue, 20 Aug 2024 12:18:30 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1601,14 +1385,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:35 GMT + - Tue, 20 Aug 2024 12:18:31 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1632,9 +1416,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - e6bd383bc87441b3afb42f63ffd50333 + - c2aaea9035f72590ce38b431257e389e x-runtime: - - '0.008011' + - '0.010506' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1644,5 +1428,5 @@ http_interactions: to Family Help (Higher) and to all steps necessary to negotiate and conclude a settlement. To include the issue of proceedings and representation in those proceedings save in relation to or at a contested final hearing.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:16:35 GMT + recorded_at: Tue, 20 Aug 2024 12:18:31 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Scope_limitations_not_being_set/When_a_provider_creates_an_application_with_multiple_proceedings_and_uses_the_back_button_scope_limitations_should_not_be_removed.yml b/features/cassettes/Scope_limitations_not_being_set/When_a_provider_creates_an_application_with_multiple_proceedings_and_uses_the_back_button_scope_limitations_should_not_be_removed.yml index bbfe7c6fff..b6ce7949ac 100644 --- a/features/cassettes/Scope_limitations_not_being_set/When_a_provider_creates_an_application_with_multiple_proceedings_and_uses_the_back_button_scope_limitations_should_not_be_removed.yml +++ b/features/cassettes/Scope_limitations_not_being_set/When_a_provider_creates_an_application_with_multiple_proceedings_and_uses_the_back_button_scope_limitations_should_not_be_removed.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:50 GMT + - Tue, 20 Aug 2024 12:21:37 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:15:49 GMT + recorded_at: Tue, 20 Aug 2024 12:21:37 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:51 GMT + - Tue, 20 Aug 2024 12:21:38 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 6da9dda3cb5c12455e8e07039983605d + - 3db24f256be30e98dec66adc32a39733 x-runtime: - - '0.018989' + - '0.029412' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:15:51 GMT + recorded_at: Tue, 20 Aug 2024 12:21:38 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:53 GMT + - Tue, 20 Aug 2024 12:21:39 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 4c57f913596889169cf592c71d59d0b7 + - 54865967863faf1552fa93d86d815072 x-runtime: - - '0.022003' + - '0.027212' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:15:53 GMT + recorded_at: Tue, 20 Aug 2024 12:21:39 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE014 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:53 GMT + - Tue, 20 Aug 2024 12:21:39 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 65dbeda637c72c5f69a01dd6223571d8 + - 13ac2d597cc2e234b4267f4cece0b503 x-runtime: - - '0.014263' + - '0.016325' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -633,29 +566,29 @@ http_interactions: representation on the return date."}},"service_levels":[{"level":1,"name":"Family Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Tue, 02 Jul 2024 09:15:53 GMT + recorded_at: Tue, 20 Aug 2024 12:21:39 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"SE014","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:54 GMT + - Tue, 20 Aug 2024 12:21:40 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '14991' connection: - keep-alive x-frame-options: @@ -671,209 +604,158 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"0f5b77c63f3f517b595957a2da015a75" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 2d857fc40ad09a34c7e2b2d696a13bad + - 9e25b0364a9dc3da6488f806bbd9d7c9 x-runtime: - - '0.025744' + - '0.049888' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:15:54 GMT + recorded_at: Tue, 20 Aug 2024 12:21:40 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"SE014","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:56 GMT + - Tue, 20 Aug 2024 12:21:42 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '14991' connection: - keep-alive x-frame-options: @@ -889,187 +771,136 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"0f5b77c63f3f517b595957a2da015a75" cache-control: - max-age=0, private, must-revalidate x-request-id: - - eeb21947b7038615de8870c96aab0ae4 + - e4729b3c97343fcdeba5265395e581ae x-runtime: - - '0.021801' + - '0.047647' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:15:56 GMT + recorded_at: Tue, 20 Aug 2024 12:21:42 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE003 @@ -1080,14 +911,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:56 GMT + - Tue, 20 Aug 2024 12:21:42 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1111,9 +942,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - dae5be8199485bc2240181b5bb568461 + - 9328be25bd4af101c735ec0bde92becb x-runtime: - - '0.007791' + - '0.016656' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1130,29 +961,29 @@ http_interactions: representation on the return date."}},"service_levels":[{"level":1,"name":"Family Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Tue, 02 Jul 2024 09:15:56 GMT + recorded_at: Tue, 20 Aug 2024 12:21:42 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"SE014,SE003","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:57 GMT + - Tue, 20 Aug 2024 12:21:43 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '14670' connection: - keep-alive x-frame-options: @@ -1168,209 +999,156 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"41d315a977bd66a7a0a5c1b703006194" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 5183adcfcf4f23241659485839c9e930 + - 2cae68d255f17ffef3e67ec90c86ef15 x-runtime: - - '0.024176' + - '0.045248' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:15:57 GMT + recorded_at: Tue, 20 Aug 2024 12:21:43 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"SE014,SE003","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:58 GMT + - Tue, 20 Aug 2024 12:21:45 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '14670' connection: - keep-alive x-frame-options: @@ -1386,187 +1164,134 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"41d315a977bd66a7a0a5c1b703006194" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 4fc0f5f923db4e4f803a6819fc69cb83 + - aab915c1e5224f5044bc76c71d4943ab x-runtime: - - '0.022921' + - '0.044460' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:15:58 GMT + recorded_at: Tue, 20 Aug 2024 12:21:45 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE004 @@ -1577,14 +1302,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:58 GMT + - Tue, 20 Aug 2024 12:21:45 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1608,9 +1333,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - accfa173de23f7afd72e56a9abb898a7 + - 6714e8f1389a92fe6be6c96da8729725 x-runtime: - - '0.009464' + - '0.015809' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1627,7 +1352,7 @@ http_interactions: representation on the return date."}},"service_levels":[{"level":1,"name":"Family Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Tue, 02 Jul 2024 09:15:58 GMT + recorded_at: Tue, 20 Aug 2024 12:21:45 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE014 @@ -1638,14 +1363,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:15:59 GMT + - Tue, 20 Aug 2024 12:21:46 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1669,9 +1394,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - aa3aadaa38d6f04276d427929d0e31bb + - a12df395a5b726c51d7abb1bf30de2f4 x-runtime: - - '0.003734' + - '0.003537' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1679,7 +1404,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:15:59 GMT + recorded_at: Tue, 20 Aug 2024 12:21:46 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE014 @@ -1690,14 +1415,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:00 GMT + - Tue, 20 Aug 2024 12:21:47 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1721,9 +1446,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 3b32d1959c647c5a420ef12620d383bd + - 64c71407c081599fa41b13e514c13752 x-runtime: - - '0.005110' + - '0.002999' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1731,7 +1456,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:16:00 GMT + recorded_at: Tue, 20 Aug 2024 12:21:47 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1742,14 +1467,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:01 GMT + - Tue, 20 Aug 2024 12:21:48 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1773,9 +1498,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 42a008e5ea05ae0d857154c52277a083 + - b4e9256bb637a5929b5cfef0f15fd29b x-runtime: - - '0.008676' + - '0.007525' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1785,7 +1510,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:16:01 GMT + recorded_at: Tue, 20 Aug 2024 12:21:48 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1796,14 +1521,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:01 GMT + - Tue, 20 Aug 2024 12:21:48 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1827,9 +1552,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - b0c25391f211bdd06e01cb68ef135869 + - 89fff65e45cda9cca913066c32bd3bd3 x-runtime: - - '0.006488' + - '0.008983' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1839,7 +1564,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:16:01 GMT + recorded_at: Tue, 20 Aug 2024 12:21:48 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE014 @@ -1850,14 +1575,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:02 GMT + - Tue, 20 Aug 2024 12:21:49 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1881,9 +1606,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - df7ac4b7d1337f5095ed92e0fe38cad9 + - de04be770eaa2dba3e0b04463381dd88 x-runtime: - - '0.008114' + - '0.014891' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1902,7 +1627,7 @@ http_interactions: representation on the return date."}},"service_levels":[{"level":1,"name":"Family Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Tue, 02 Jul 2024 09:16:02 GMT + recorded_at: Tue, 20 Aug 2024 12:21:49 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE014 @@ -1913,14 +1638,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:02 GMT + - Tue, 20 Aug 2024 12:21:49 GMT content-type: - application/json; charset=utf-8 content-length: @@ -1944,9 +1669,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - ef6ac08a568d03f019c02c83ef5bd3da + - c34f41e1cfb041020be34bdf86c03861 x-runtime: - - '0.009738' + - '0.056681' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -1965,7 +1690,7 @@ http_interactions: representation on the return date."}},"service_levels":[{"level":1,"name":"Family Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Tue, 02 Jul 2024 09:16:02 GMT + recorded_at: Tue, 20 Aug 2024 12:21:49 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -1976,14 +1701,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:02 GMT + - Tue, 20 Aug 2024 12:21:49 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2007,9 +1732,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 3a6c5c08b39cfdf23b627a1c1b9dd91b + - 38e20ae4d69490ddf79cf7339d345845 x-runtime: - - '0.006849' + - '0.012827' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2019,7 +1744,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:16:02 GMT + recorded_at: Tue, 20 Aug 2024 12:21:49 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_scopes @@ -2030,14 +1755,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:03 GMT + - Tue, 20 Aug 2024 12:21:50 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2061,9 +1786,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - a0917c947d7785c6da91b0cf3549fa76 + - b8f0d520e13df7ae3967120f9af834b9 x-runtime: - - '0.019108' + - '0.034604' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2090,7 +1815,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]},{"code":"FM015","meaning":"Section 37 Report","description":"Limited to a section 37 report only.","additional_params":[]}]}}' - recorded_at: Tue, 02 Jul 2024 09:16:03 GMT + recorded_at: Tue, 20 Aug 2024 12:21:50 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/SE014 @@ -2101,14 +1826,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:03 GMT + - Tue, 20 Aug 2024 12:21:50 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2132,9 +1857,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 348236ca3a2e9e4a5adf66ffdd71e854 + - d5d317aa6267703c8e82625f8a445f2e x-runtime: - - '0.011386' + - '0.011488' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2153,7 +1878,7 @@ http_interactions: representation on the return date."}},"service_levels":[{"level":1,"name":"Family Help (Higher)","stage":1,"proceeding_default":true},{"level":3,"name":"Full Representation","stage":8,"proceeding_default":false}]}' - recorded_at: Tue, 02 Jul 2024 09:16:03 GMT + recorded_at: Tue, 20 Aug 2024 12:21:50 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -2164,14 +1889,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:04 GMT + - Tue, 20 Aug 2024 12:21:51 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2195,9 +1920,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - e3583aa100739783b8f292dfb84d22f9 + - 613935210234a0362eb4050a7be0506d x-runtime: - - '0.006365' + - '0.006817' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2207,7 +1932,7 @@ http_interactions: order inc. return date","description":"Limited to all steps necessary to apply for an interim order; where application is made without notice to include representation on the return date.","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:16:04 GMT + recorded_at: Tue, 20 Aug 2024 12:21:51 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE014 @@ -2218,14 +1943,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:05 GMT + - Tue, 20 Aug 2024 12:21:52 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2249,9 +1974,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - c2508b2e1586cdd97e7ce56c477ed256 + - 5af693db3289a593281ca9da7a9d3caa x-runtime: - - '0.004178' + - '0.003496' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2259,7 +1984,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:16:05 GMT + recorded_at: Tue, 20 Aug 2024 12:21:52 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE014 @@ -2270,14 +1995,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:06 GMT + - Tue, 20 Aug 2024 12:21:53 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2301,9 +2026,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - b7d0aaace97fc775bb7ba31b0d2ac58d + - a62d50244d430b113a94f65e24f301d4 x-runtime: - - '0.004311' + - '0.004873' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2311,7 +2036,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:16:06 GMT + recorded_at: Tue, 20 Aug 2024 12:21:53 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/SE014 @@ -2322,14 +2047,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:16:07 GMT + - Tue, 20 Aug 2024 12:21:54 GMT content-type: - application/json; charset=utf-8 content-length: @@ -2353,9 +2078,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - cdbf67d06d6de7fee487fb1ccd3bd423 + - 64281dd75b388a1214493d44768468b3 x-runtime: - - '0.004219' + - '0.002939' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -2363,5 +2088,5 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:16:07 GMT + recorded_at: Tue, 20 Aug 2024 12:21:54 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Search_proceedings/I_am_able_to_clear_proceeding_on_the_proceeding_page.yml b/features/cassettes/Search_proceedings/I_am_able_to_clear_proceeding_on_the_proceeding_page.yml index 134f254b1d..e2ba932433 100644 --- a/features/cassettes/Search_proceedings/I_am_able_to_clear_proceeding_on_the_proceeding_page.yml +++ b/features/cassettes/Search_proceedings/I_am_able_to_clear_proceeding_on_the_proceeding_page.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 25 Jun 2024 12:02:39 GMT + - Tue, 20 Aug 2024 12:20:23 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"110\",\r\n \"lastupdate\" - : \"2024-06-24\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 25 Jun 2024 12:02:39 GMT + recorded_at: Tue, 20 Aug 2024 12:20:23 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 25 Jun 2024 12:02:40 GMT + - Tue, 20 Aug 2024 12:20:24 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,185 +171,152 @@ http_interactions: vary: - Accept, Origin etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - b44585ef402feea3eb77e71ffccac1bc + - 61dea49732642ff190427894f26f56ce x-runtime: - - '0.020752' + - '0.025651' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB005","meaning":"Emergency protection order - - discharge","description":"to be represented on an application to discharge - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB029","meaning":"Child arrangements order - - contact","description":"to be represented on an application for a child arrangements - order-who the child(ren) spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues + Ord-S8","description":"to be represented on an application to vary or discharge + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge + - Part IV","description":"to be represented on an application to extend, vary + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to be represented on an application, following breach, for an amendment to an enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under section 5 protection from harassment act 1997","description":"to be represented on an application to vary or discharge an order under section 5 Protection from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to + be represented on an application for committal and for an enforcement order + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps + Order-Appeal-S8","description":"to be represented on an application to vary + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to + be represented in an action for an injunction under section 3 Protection from + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB057","meaning":"Care order","description":"to be represented - on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to - be represented on an application to vary or discharge a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a prohibited steps order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 25 Jun 2024 12:02:40 GMT + recorded_at: Tue, 20 Aug 2024 12:20:24 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Search_proceedings/No_results_returned_is_seen_on_screen_when_invalid_proceeding_search_entered.yml b/features/cassettes/Search_proceedings/No_results_returned_is_seen_on_screen_when_invalid_proceeding_search_entered.yml index 805b51a0cf..a83262489c 100644 --- a/features/cassettes/Search_proceedings/No_results_returned_is_seen_on_screen_when_invalid_proceeding_search_entered.yml +++ b/features/cassettes/Search_proceedings/No_results_returned_is_seen_on_screen_when_invalid_proceeding_search_entered.yml @@ -8,46 +8,39 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" + - Faraday v2.10.1 response: status: code: 200 message: OK headers: - Date: - - Tue, 17 Jan 2023 09:33:35 GMT - Content-Type: + date: + - Tue, 20 Aug 2024 12:20:15 GMT + content-type: - application/json;charset=UTF-8 - Transfer-Encoding: + transfer-encoding: - chunked - Connection: + connection: - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: + vary: - Origin,Accept-Encoding,key - Omse-Category: + omse-category: - premium - Omse-Transaction-Count: + omse-transaction-count: - '60' - Omse-Premium-Count: + omse-premium-count: - '0' - Strict-Transport-Security: + strict-transport-security: - max-age=31536000; includeSubDomains body: - encoding: ASCII-8BIT + encoding: UTF-8 string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"98\",\r\n \"lastupdate\" - : \"2023-01-16\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -60,28 +53,29 @@ http_interactions: \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" + \ \"WARD_CODE\" : \"E05013806\",\r\n \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n + \ \"ENTRY_DATE\" : \"19/03/2001\",\r\n \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n + \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" + : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1B\"\r\n }\r\n }, + {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n \"UDPRN\" + : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT POLICE, 98, PETTY + FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"BRITISH TRANSPORT + POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" + : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" + : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529558.47,\r\n + \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n + \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : + \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n + \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" + \ \"WARD_CODE\" : \"E05013806\",\r\n \"PARENT_UPRN\" : \"100023337884\",\r\n + \ \"LAST_UPDATE_DATE\" : \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n + \ \"BLPU_STATE_DATE\" : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n + \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT @@ -97,14 +91,15 @@ http_interactions: \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n + \ \"WARD_CODE\" : \"E05013806\",\r\n \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n + \ \"ENTRY_DATE\" : \"19/03/2001\",\r\n \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n + \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" + : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1F\"\r\n }\r\n }, + {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n \"UDPRN\" + : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n + \ \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY + FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H + 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange @@ -114,84 +109,214 @@ http_interactions: \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n + \ \"WARD_CODE\" : \"E05013806\",\r\n \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n + \ \"ENTRY_DATE\" : \"19/03/2001\",\r\n \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n + \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" + : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1A\"\r\n }\r\n }, + {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n \"UDPRN\" + : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY FRANCE, LONDON, + SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n \"BUILDING_NUMBER\" + : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" + : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n + \ \"X_COORDINATE\" : 529576.0,\r\n \"Y_COORDINATE\" : 179549.0,\r\n + \ \"STATUS\" : \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n + \ \"CLASSIFICATION_CODE\" : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" + : \"Office / Work Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n + \ \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" : \"CITY OF WESTMINSTER\",\r\n + \ \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" : \"This + record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 17 Jan 2023 09:33:35 GMT + \ \"WARD_CODE\" : \"E05013806\",\r\n \"PARENT_UPRN\" : \"10033604583\",\r\n + \ \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n \"ENTRY_DATE\" : \"15/06/2020\",\r\n + \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n + \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" + : \"1N\"\r\n }\r\n } ]\r\n}" + recorded_at: Tue, 20 Aug 2024 12:20:15 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v1.10.2 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" + - Faraday v2.10.1 response: status: code: 200 message: OK headers: - Date: - - Tue, 17 Jan 2023 09:33:36 GMT - Content-Type: + date: + - Tue, 20 Aug 2024 12:20:16 GMT + content-type: - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: + content-length: + - '17643' + connection: - keep-alive - X-Frame-Options: + x-frame-options: - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: + x-xss-protection: + - '0' + x-content-type-options: - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: + x-permitted-cross-domain-policies: - none - Referrer-Policy: + referrer-policy: - strict-origin-when-cross-origin - Vary: + vary: - Accept, Origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: + etag: + - W/"8b3f691ad276799e255bfe066f630393" + cache-control: - max-age=0, private, must-revalidate - X-Request-Id: - - e9d74cf24921adf067ef8ce9a904205c - X-Runtime: - - '0.037598' - Strict-Transport-Security: + x-request-id: + - 0b0a26c4ab41c677fc0289c0ad089173 + x-runtime: + - '0.029292' + strict-transport-security: - max-age=15724800; includeSubDomains body: - encoding: ASCII-8BIT - string: !binary |- - W3siY2Ntc19jb2RlIjoiREEwMDEiLCJtZWFuaW5nIjoiSW5oZXJlbnQganVyaXNkaWN0aW9uIGhpZ2ggY291cnQgaW5qdW5jdGlvbiIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGFuIGluanVuY3Rpb24sIG9yZGVyIG9yIGRlY2xhcmF0aW9uIHVuZGVyIHRoZSBpbmhlcmVudCBqdXJpc2RpY3Rpb24gb2YgdGhlIGNvdXJ0LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwOTUiLCJtZWFuaW5nIjoiRW5mb3JjZW1lbnQgb3JkZXIgMTFKLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUEiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1BcHBlYWwiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDQiLCJtZWFuaW5nIjoiTm9uLW1vbGVzdGF0aW9uIG9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBub24tbW9sZXN0YXRpb24gb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAxNEUiLCJtZWFuaW5nIjoiQ0FPIHJlc2lkZW5jZS1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZS4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDRBIiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA1IiwibWVhbmluZyI6Ik9jY3VwYXRpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBvY2N1cGF0aW9uIG9yZGVyLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMTRBIiwibWVhbmluZyI6IkNBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzRSIsIm1lYW5pbmciOiJDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk1QSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBDaGlsZHJlbiBBY3QgMTk4OS4gIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwOTdBIiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgdGhlIHJldm9jYXRpb24gb2YgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogYW5kIFNjaGVkdWxlIEExIENoaWxkcmVuIEFjdCAxOTg5LiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTA5OUUiLCJtZWFuaW5nIjoiQW1kIGVuZm9yY2VtZW50LWJyZWFjaC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24sIGZvbGxvd2luZyBicmVhY2gsIGZvciBhbiBhbWVuZG1lbnQgdG8gYW4gZW5mb3JjZW1lbnQgb3JkZXIgb3IgZm9yIGEgZnVydGhlciBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwNEUiLCJtZWFuaW5nIjoiU3BlY2lmaWMgSXNzdWUgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMjAiLCJtZWFuaW5nIjoiRkdNIFByb3RlY3Rpb24gT3JkZXIiLCJkZXNjcmlwdGlvbiI6IlRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIEZlbWFsZSBHZW5pdGFsIE11dGlsYXRpb24gUHJvdGVjdGlvbiBPcmRlciB1bmRlciB0aGUgRmVtYWxlIEdlbml0YWwgTXV0aWxhdGlvbiBBY3QuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTEwMUUiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tcGVuc2F0aW9uIGZvciBmaW5hbmNpYWwgbG9zcyB1bmRlciBzZWN0aW9uIDExTyBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2IiwibWVhbmluZyI6IlZhcnkgQ0FPIHJlc2lkZW5jZSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXIg4oCTd2hlcmUgdGhlIGNoaWxkKHJlbikgd2lsbCBsaXZlLiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNkUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gcmVzaWRlbmNlLUVuZm9yY2VtZW50IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA0IiwibWVhbmluZyI6IlNwZWNpZmljIElzc3VlIE9yZGVyIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBzcGVjaWZpYyBpc3N1ZSBvcmRlci4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDk3IiwibWVhbmluZyI6IlJldm9jYXRpb24gZW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciB0aGUgcmV2b2NhdGlvbiBvZiBhbiBlbmZvcmNlbWVudCBvcmRlciB1bmRlciBzZWN0aW9uIDExSiBhbmQgU2NoZWR1bGUgQTEgQ2hpbGRyZW4gQWN0IDE5ODkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDAzIiwibWVhbmluZyI6IlByb2hpYml0ZWQgc3RlcHMgb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxM0EiLCJtZWFuaW5nIjoiQ0FPIGNvbnRhY3QtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAwN0EiLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYSBwcm9oaWJpdGVkIHN0ZXBzIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMEUiLCJtZWFuaW5nIjoiQnJlYWNoIGVuZm9yY2VtZW50LVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiwgZm9sbG93aW5nIGJyZWFjaCwgZm9yIGFuIGFtZW5kbWVudCB0byBhbiBlbmZvcmNlbWVudCBvcmRlciBvciBmb3IgYSBmdXJ0aGVyIGVuZm9yY2VtZW50IG9yZGVyIHVuZGVyIHNlY3Rpb24gMTFKIGFuZCBTY2hlZHVsZSBBMSBDaGlsZHJlbiBBY3QgMTk4OS4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE1IiwibWVhbmluZyI6IlZhcnkgQ0FPIGNvbnRhY3QiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkvZGlzY2hhcmdlIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyLXdobyB0aGUgY2hpbGQocmVuKSBzcGVuZCB0aW1lIHdpdGguIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA4IiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDAzIiwibWVhbmluZyI6IkhhcmFzc21lbnQgLSBpbmp1bmN0aW9uIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBpbiBhbiBhY3Rpb24gZm9yIGFuIGluanVuY3Rpb24gdW5kZXIgc2VjdGlvbiAzIFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3LiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6Ik1JTkpOIiwiY2Ntc19tYXR0ZXIiOiJEb21lc3RpYyBhYnVzZSJ9LHsiY2Ntc19jb2RlIjoiU0UwMDNFIiwibWVhbmluZyI6IlByb2hpYml0ZWQgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTAxNUUiLCJtZWFuaW5nIjoiVmFyeSBDQU8gY29udGFjdC1FbmZvcmNlbWVudCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeS9kaXNjaGFyZ2UgYSBjaGlsZCBhcnJhbmdlbWVudHMgb3JkZXItd2hvIHRoZSBjaGlsZChyZW4pIHNwZW5kIHRpbWUgd2l0aC4gRW5mb3JjZW1lbnQgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDciLCJtZWFuaW5nIjoiVmFyeS9EaXNjaGFyZ2UgUHJvaGliIFN0ZXBzIE9yZGVyLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDA3RSIsIm1lYW5pbmciOiJWYXJ5L0Rpc2NoYXJnZSBQcm9oaWIgU3RlcHMgT3JkZXItRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgcHJvaGliaXRlZCBzdGVwcyBvcmRlci4gIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDEzIiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAoY29udGFjdCkiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlci13aG8gdGhlIGNoaWxkKHJlbikgc3BlbmQgdGltZSB3aXRoLiIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhBIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtQXBwZWFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIHNwZWNpZmljIGlzc3VlIG9yZGVyLiAgQXBwZWFscyBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJTRTEwMUEiLCJtZWFuaW5nIjoiQ29tcGVuc2F0aW9uLUFwcGVhbC1TOCIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGNvbXBlbnNhdGlvbiBmb3IgZmluYW5jaWFsIGxvc3MgdW5kZXIgc2VjdGlvbiAxMU8gQ2hpbGRyZW4gQWN0IDE5ODkuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IkRBMDA2IiwibWVhbmluZyI6IkV4dGVuZCwgdmFyaWF0aW9uIG9yIGRpc2NoYXJnZSAtIFBhcnQgSVYiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIGV4dGVuZCwgdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2IiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn0seyJjY21zX2NvZGUiOiJTRTAwM0EiLCJtZWFuaW5nIjoiUHJvaGliaXRlZCBTdGVwcyBPcmRlci1BcHBlYWwtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIHByb2hpYml0ZWQgc3RlcHMgb3JkZXIuICBBcHBlYWxzIG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE0IiwibWVhbmluZyI6IkNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciAocmVzaWRlbmNlKSIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gZm9yIGEgY2hpbGQgYXJyYW5nZW1lbnRzIG9yZGVyIOKAk3doZXJlIHRoZSBjaGlsZChyZW4pIHdpbGwgbGl2ZSIsImZ1bGxfczhfb25seSI6ZmFsc2UsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiU0UwMDhFIiwibWVhbmluZyI6IlZhcnkvRGlzY2hhcmdlIFNwZWNpZmljIElzc3VlcyBPcmQtRW5mb3JjZW1lbnQtUzgiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIHRvIHZhcnkgb3IgZGlzY2hhcmdlIGEgc3BlY2lmaWMgaXNzdWUgb3JkZXIuICBFbmZvcmNlbWVudCBvbmx5LiIsImZ1bGxfczhfb25seSI6dHJ1ZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiS1NFQzgiLCJjY21zX21hdHRlciI6IkNoaWxkcmVuIC0gc2VjdGlvbiA4In0seyJjY21zX2NvZGUiOiJEQTAwMiIsIm1lYW5pbmciOiJWYXJpYXRpb24gb3IgZGlzY2hhcmdlIHVuZGVyIHNlY3Rpb24gNSBwcm90ZWN0aW9uIGZyb20gaGFyYXNzbWVudCBhY3QgMTk5NyIsImRlc2NyaXB0aW9uIjoidG8gYmUgcmVwcmVzZW50ZWQgb24gYW4gYXBwbGljYXRpb24gdG8gdmFyeSBvciBkaXNjaGFyZ2UgYW4gb3JkZXIgdW5kZXIgc2VjdGlvbiA1IFByb3RlY3Rpb24gZnJvbSBIYXJhc3NtZW50IEFjdCAxOTk3IHdoZXJlIHRoZSBwYXJ0aWVzIGFyZSBhc3NvY2lhdGVkIHBlcnNvbnMgKGFzIGRlZmluZWQgYnkgUGFydCBJViBGYW1pbHkgTGF3IEFjdCAxOTk2KS4iLCJmdWxsX3M4X29ubHkiOmZhbHNlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJNSU5KTiIsImNjbXNfbWF0dGVyIjoiRG9tZXN0aWMgYWJ1c2UifSx7ImNjbXNfY29kZSI6IlNFMDk2RSIsIm1lYW5pbmciOiJFbmZvcmNlbWVudCBvcmRlcitj4oCZdGFsLVM4IiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiBmb3IgY29tbWl0dGFsIGFuZCBmb3IgYW4gZW5mb3JjZW1lbnQgb3JkZXIgdW5kZXIgc2VjdGlvbiAxMUogQ2hpbGRyZW4gQWN0IDE5ODkuIEVuZm9yY2VtZW50IG9ubHkuIiwiZnVsbF9zOF9vbmx5Ijp0cnVlLCJjY21zX2NhdGVnb3J5X2xhdyI6IkZhbWlseSIsImNjbXNfbWF0dGVyX2NvZGUiOiJLU0VDOCIsImNjbXNfbWF0dGVyIjoiQ2hpbGRyZW4gLSBzZWN0aW9uIDgifSx7ImNjbXNfY29kZSI6IlNFMDE2QSIsIm1lYW5pbmciOiJWYXJ5IENBTyByZXNpZGVuY2UtQXBwZWFsIiwiZGVzY3JpcHRpb24iOiJ0byBiZSByZXByZXNlbnRlZCBvbiBhbiBhcHBsaWNhdGlvbiB0byB2YXJ5IG9yIGRpc2NoYXJnZSBhIGNoaWxkIGFycmFuZ2VtZW50cyBvcmRlciDigJN3aGVyZSB0aGUgY2hpbGQocmVuKSB3aWxsIGxpdmUuIEFwcGVhbHMgb25seS4iLCJmdWxsX3M4X29ubHkiOnRydWUsImNjbXNfY2F0ZWdvcnlfbGF3IjoiRmFtaWx5IiwiY2Ntc19tYXR0ZXJfY29kZSI6IktTRUM4IiwiY2Ntc19tYXR0ZXIiOiJDaGlsZHJlbiAtIHNlY3Rpb24gOCJ9LHsiY2Ntc19jb2RlIjoiREEwMDciLCJtZWFuaW5nIjoiRm9yY2VkIG1hcnJpYWdlIHByb3RlY3Rpb24gb3JkZXIiLCJkZXNjcmlwdGlvbiI6InRvIGJlIHJlcHJlc2VudGVkIG9uIGFuIGFwcGxpY2F0aW9uIGZvciBhIGZvcmNlZCBtYXJyaWFnZSBwcm90ZWN0aW9uIG9yZGVyIiwiZnVsbF9zOF9vbmx5IjpmYWxzZSwiY2Ntc19jYXRlZ29yeV9sYXciOiJGYW1pbHkiLCJjY21zX21hdHRlcl9jb2RlIjoiTUlOSk4iLCJjY21zX21hdHRlciI6IkRvbWVzdGljIGFidXNlIn1d - recorded_at: Tue, 17 Jan 2023 09:33:36 GMT -recorded_with: VCR 6.1.0 + encoding: UTF-8 + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues + Ord-S8","description":"to be represented on an application to vary or discharge + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge + - Part IV","description":"to be represented on an application to extend, vary + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To + be represented on an application for a Female Genital Mutilation Protection + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to + be represented on an application for committal and for an enforcement order + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps + Order-Appeal-S8","description":"to be represented on an application to vary + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to + be represented in an action for an injunction under section 3 Protection from + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + Ord-Enforcement-S8","description":"to be represented on an application to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a prohibited steps order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"}]' + recorded_at: Tue, 20 Aug 2024 12:20:16 GMT +recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Under_18_applicant_journey/Completes_a_minimal_application_for_applicant_that_is_under_18.yml b/features/cassettes/Under_18_applicant_journey/Completes_a_minimal_application_for_applicant_that_is_under_18.yml index c093386ace..994e39e5cd 100644 --- a/features/cassettes/Under_18_applicant_journey/Completes_a_minimal_application_for_applicant_that_is_under_18.yml +++ b/features/cassettes/Under_18_applicant_journey/Completes_a_minimal_application_for_applicant_that_is_under_18.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:04 GMT + - Tue, 20 Aug 2024 12:26:30 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"111\",\r\n \"lastupdate\" - : \"2024-07-01\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 02 Jul 2024 09:13:04 GMT + recorded_at: Tue, 20 Aug 2024 12:26:30 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:04 GMT + - Tue, 20 Aug 2024 12:26:31 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 7b206e7ecbfc49c22d5112e839469d7e + - e634823e8ef043efd53ff2cf540ed9cf x-runtime: - - '0.027543' + - '0.031481' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:13:04 GMT + recorded_at: Tue, 20 Aug 2024 12:26:31 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:06 GMT + - Tue, 20 Aug 2024 12:26:32 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"e34e5cbdb1551f06c2860b152f262e90" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 50e78ef372c6e163ff7f04bb03b88d4d + - 7cface5ea1169e4b76beaffaadc67fc9 x-runtime: - - '0.027087' + - '0.026165' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to - be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under + section 5 protection from harassment act 1997","description":"to be represented + on an application to vary or discharge an order under section 5 Protection + from Harassment Act 1997 where the parties are associated persons (as defined + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB029","meaning":"Child arrangements order - contact","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to - be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 02 Jul 2024 09:13:06 GMT + recorded_at: Tue, 20 Aug 2024 12:26:32 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:06 GMT + - Tue, 20 Aug 2024 12:26:33 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 987f5ceca6f9b7138554565e8b48bc3e + - f84ee334aa4925bdadb97156134e8162 x-runtime: - - '0.010726' + - '0.010519' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,7 +565,7 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 02 Jul 2024 09:13:06 GMT + recorded_at: Tue, 20 Aug 2024 12:26:32 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -643,14 +576,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:07 GMT + - Tue, 20 Aug 2024 12:26:34 GMT content-type: - application/json; charset=utf-8 content-length: @@ -674,9 +607,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 73411e7d5f8290ed1adc844d1da3d57a + - b7d79db57ebfe5f59465a37c762936af x-runtime: - - '0.005290' + - '0.002850' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -684,7 +617,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:13:07 GMT + recorded_at: Tue, 20 Aug 2024 12:26:33 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types/DA004 @@ -695,14 +628,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:07 GMT + - Tue, 20 Aug 2024 12:26:34 GMT content-type: - application/json; charset=utf-8 content-length: @@ -726,9 +659,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - ef49560b10a3e98cc6ab50ec45b2b8cc + - b4112f20353c66ca35544dc65f685f22 x-runtime: - - '0.004195' + - '0.003052' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -736,7 +669,7 @@ http_interactions: string: '{"success":true,"client_involvement_type":[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined party"}]}' - recorded_at: Tue, 02 Jul 2024 09:13:07 GMT + recorded_at: Tue, 20 Aug 2024 12:26:34 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -747,14 +680,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:09 GMT + - Tue, 20 Aug 2024 12:26:35 GMT content-type: - application/json; charset=utf-8 content-length: @@ -778,9 +711,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 575ef26423de322aadc6ae397b7044dd + - b3c7a27f8b87da48c86164a8b394728e x-runtime: - - '0.009490' + - '0.007158' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -793,7 +726,7 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:13:08 GMT + recorded_at: Tue, 20 Aug 2024 12:26:35 GMT - request: method: post uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults @@ -804,14 +737,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 02 Jul 2024 09:13:09 GMT + - Tue, 20 Aug 2024 12:26:36 GMT content-type: - application/json; charset=utf-8 content-length: @@ -835,9 +768,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - 1e410475a7d235069afae92dbb7714bb + - 7f6eac612b71e64d3c1504ab9615ca2a x-runtime: - - '0.007481' + - '0.008846' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -850,5 +783,5 @@ http_interactions: of arrest to representation on the consideration of the breach by the court (but excluding applying for a warrant of arrest, if not attached, and representation in contempt proceedings).","additional_params":[]}}' - recorded_at: Tue, 02 Jul 2024 09:13:09 GMT + recorded_at: Tue, 20 Aug 2024 12:26:35 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/Using_the_back_button_on_proceedings_should_not_lock_a_user_out/When_a_provider_is_adding_proceedings_and_uses_the_back_button_they_should_route_to_the_list_of_proceedings_first.yml b/features/cassettes/Using_the_back_button_on_proceedings_should_not_lock_a_user_out/When_a_provider_is_adding_proceedings_and_uses_the_back_button_they_should_route_to_the_list_of_proceedings_first.yml index c1d6dcb97d..f745e983f7 100644 --- a/features/cassettes/Using_the_back_button_on_proceedings_should_not_lock_a_user_out/When_a_provider_is_adding_proceedings_and_uses_the_back_button_they_should_route_to_the_list_of_proceedings_first.yml +++ b/features/cassettes/Using_the_back_button_on_proceedings_should_not_lock_a_user_out/When_a_provider_is_adding_proceedings_and_uses_the_back_button_they_should_route_to_the_list_of_proceedings_first.yml @@ -8,14 +8,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 25 Jun 2024 12:01:25 GMT + - Tue, 20 Aug 2024 12:21:28 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -37,11 +37,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"110\",\r\n \"lastupdate\" - : \"2024-06-24\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -134,29 +133,29 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 25 Jun 2024 12:01:25 GMT + recorded_at: Tue, 20 Aug 2024 12:21:28 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 25 Jun 2024 12:01:26 GMT + - Tue, 20 Aug 2024 12:21:29 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -172,209 +171,176 @@ http_interactions: vary: - Accept, Origin etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 30323083ae7e062409806b2ba7b6b3bd + - 4fa972171f22e49f22130000b8076349 x-runtime: - - '0.146670' + - '0.036798' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB005","meaning":"Emergency protection order - - discharge","description":"to be represented on an application to discharge - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB029","meaning":"Child arrangements order - - contact","description":"to be represented on an application for a child arrangements - order-who the child(ren) spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues + Ord-S8","description":"to be represented on an application to vary or discharge + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge + - Part IV","description":"to be represented on an application to extend, vary + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to be represented on an application, following breach, for an amendment to an enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under section 5 protection from harassment act 1997","description":"to be represented on an application to vary or discharge an order under section 5 Protection from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to + be represented on an application for committal and for an enforcement order + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps + Order-Appeal-S8","description":"to be represented on an application to vary + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to + be represented in an action for an injunction under section 3 Protection from + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB057","meaning":"Care order","description":"to be represented - on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to - be represented on an application to vary or discharge a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a prohibited steps order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 25 Jun 2024 12:01:26 GMT + recorded_at: Tue, 20 Aug 2024 12:21:28 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 25 Jun 2024 12:01:27 GMT + - Tue, 20 Aug 2024 12:21:30 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '17643' connection: - keep-alive x-frame-options: @@ -390,187 +356,154 @@ http_interactions: vary: - Accept, Origin etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"8b3f691ad276799e255bfe066f630393" cache-control: - max-age=0, private, must-revalidate x-request-id: - - 2d21c1bdb13dee1059cc9966d27e6f77 + - 49db7be700df073e3021d90f1ffabee4 x-runtime: - - '0.022494' + - '0.032510' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB005","meaning":"Emergency protection order - - discharge","description":"to be represented on an application to discharge - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB029","meaning":"Child arrangements order - - contact","description":"to be represented on an application for a child arrangements - order-who the child(ren) spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues + Ord-S8","description":"to be represented on an application to vary or discharge + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge + - Part IV","description":"to be represented on an application to extend, vary + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"PB005","meaning":"Emergency protection order - discharge","description":"to + be represented on an application to discharge an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to + be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to be represented on an application, following breach, for an amendment to an enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under section 5 protection from harassment act 1997","description":"to be represented on an application to vary or discharge an order under section 5 Protection from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to + be represented on an application for committal and for an enforcement order + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps + Order-Appeal-S8","description":"to be represented on an application to vary + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to + be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"PB004","meaning":"Emergency protection order + - extend","description":"to be represented on an application for or to extend + an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to + be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to + be represented in an action for an injunction under section 3 Protection from + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to + be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB057","meaning":"Care order","description":"to + be represented on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB057","meaning":"Care order","description":"to be represented - on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to - be represented on an application to vary or discharge a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to + be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KPBLW","ccms_matter":"Special + Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a prohibited steps order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 25 Jun 2024 12:01:27 GMT + recorded_at: Tue, 20 Aug 2024 12:21:30 GMT - request: method: get uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 @@ -581,14 +514,14 @@ http_interactions: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 25 Jun 2024 12:01:28 GMT + - Tue, 20 Aug 2024 12:21:30 GMT content-type: - application/json; charset=utf-8 content-length: @@ -612,9 +545,9 @@ http_interactions: cache-control: - max-age=0, private, must-revalidate x-request-id: - - cde8cdc044d682e298eed7deda14f85b + - 7800868918ad7c9f5b6a695f7f0e3ec4 x-runtime: - - '0.009269' + - '0.018492' strict-transport-security: - max-age=15724800; includeSubDomains body: @@ -632,29 +565,29 @@ http_interactions: for an interim order; where application is made without notice to include representation on the return date."}},"service_levels":[{"level":3,"name":"Full Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Tue, 25 Jun 2024 12:01:27 GMT + recorded_at: Tue, 20 Aug 2024 12:21:30 GMT - request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all + method: post + uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/filter body: - encoding: US-ASCII - string: '' + encoding: UTF-8 + string: '{"current_proceedings":"DA004","allowed_categories":["MAT"],"search_term":""}' headers: Content-Type: - application/json User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 25 Jun 2024 12:01:28 GMT + - Tue, 20 Aug 2024 12:21:31 GMT content-type: - application/json; charset=utf-8 content-length: - - '20445' + - '15048' connection: - keep-alive x-frame-options: @@ -670,187 +603,137 @@ http_interactions: vary: - Accept, Origin etag: - - W/"357eaee151c5e2d7e2e927bf9f0e50ac" + - W/"addebffb1ccfb2ce89909f324f0dbddc" cache-control: - max-age=0, private, must-revalidate x-request-id: - - bc6c967601b26191c8abb913212b29c0 + - 9066c70b6e643697bc5c4b4e29d8fa6a x-runtime: - - '0.019427' + - '0.038286' strict-transport-security: - max-age=15724800; includeSubDomains body: encoding: UTF-8 - string: '[{"ccms_code":"PB051","meaning":"Placement order","description":"to - be represented on an application for a placement order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB005","meaning":"Emergency protection order - - discharge","description":"to be represented on an application to discharge - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB029","meaning":"Child arrangements order - - contact","description":"to be represented on an application for a child arrangements - order-who the child(ren) spend time with","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB020","meaning":"Specific issue order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB012","meaning":"Recovery of children order","description":"to - be represented on an application for the recovery of a child(ren).","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + string: '[{"ccms_code":"DA005","meaning":"Occupation order","description":"to + be represented on an application for an occupation order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to + be represented on an application, following breach, for an amendment to an + enforcement order or for a further enforcement order under section 11J and + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues + Ord-Appeal-S8","description":"to be represented on an application to vary + or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB006","meaning":"Secure accommodation order","description":"to - be represented on an application for a secure accommodation order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB021","meaning":"Contact order - vary or discharge","description":"to - be represented on an application to vary or discharge a contact order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB052","meaning":"Special guardianship order","description":"to - be represented on an application for a Special Guardianship Order .","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB022","meaning":"Residence - vary or discharge","description":"to - be represented on an application to vary or discharge a residence order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic + under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues + Ord-S8","description":"to be represented on an application to vary or discharge + a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge + - Part IV","description":"to be represented on an application to extend, vary + or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic abuse"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Order under the Female Genital Mutilation Act.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to + be represented on an application for compensation for financial loss under + section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to be represented on an application, following breach, for an amendment to an enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under section 5 protection from harassment act 1997","description":"to be represented on an application to vary or discharge an order under section 5 Protection from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to + by Part IV Family Law Act 1996).","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to + be represented on an application for an enforcement order under section 11J + Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to + be represented on an application for committal and for an enforcement order + under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps + Order-Appeal-S8","description":"to be represented on an application to vary + or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to + be represented on an application for a child arrangements order –where the + child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to + be represented in an action for an injunction under section 3 Protection from + Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to + be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to + be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps + Order-S8","description":"to be represented on an application to vary or discharge + a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps + Order-Enforcement-S8","description":"to be represented on an application to + vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB059","meaning":"Supervision order","description":"to - be represented on an application for a supervision order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB030","meaning":"Child arrangements order - residence","description":"to - be represented on an application for a child arrangements order-where the - child(ren) will live","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court - injunction","description":"to be represented on an application for an injunction, - order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"PB057","meaning":"Care order","description":"to be represented - on an application for a care order","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB019","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"PB003","meaning":"Child assessment order","description":"to - be represented on an application for a child assessment order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues + spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB004","meaning":"Emergency protection order - - extend","description":"to be represented on an application for or to extend - an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to + be represented on an application for the revocation of an enforcement order + under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to + be represented on an application to vary or discharge a child arrangements + order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB007","meaning":"Contact with a child in care","description":"to - be represented on an application for contact with a child in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to + the child(ren) spend time with.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB026","meaning":"Emergency protection order","description":"to - be represented on an application for an emergency protection order.","full_s8_only":false,"sca_core":true,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + order –where the child(ren) will live. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to + be represented on an application for a prohibited steps order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to + be represented on an application for a child arrangements order-who the child(ren) + spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB023","meaning":"Prohibited steps order - vary - or discharge","description":"to be represented on an application to vary or - discharge a prohibitive steps order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps Order-S8","description":"to - be represented on an application to vary or discharge a prohibited steps order.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB024","meaning":"Specific issue order - vary - or discharge","description":"to be represented on an application to vary or - discharge a specific issues order.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to + be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court + injunction","description":"to be represented on an application for an injunction, + order or declaration under the inherent jurisdiction of the court.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB027","meaning":"Parental responsibility","description":"to - be represented on an application for parental responsibility.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"PB014","meaning":"End contact with a child in - care","description":"to be represented on an application to terminate contact - with a child/children in care.","full_s8_only":false,"sca_core":false,"sca_related":true,"ccms_category_law":"Family","ccms_matter_code":"KPBLW","ccms_matter":"Special - Children Act"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children + section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to + be represented on an application for a prohibited steps order. Enforcement + only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children + - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to + be represented on an application for a forced marriage protection order","full_s8_only":false,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","ccms_matter":"Domestic + abuse"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to + be represented on an application to vary/discharge a child arrangements order-who + the child(ren) spend time with. Enforcement only.","full_s8_only":true,"sca_core":false,"sca_related":false,"ccms_category_law":"Family","ccms_category_law_code":"MAT","ccms_matter_code":"KSEC8","ccms_matter":"Children - section 8"}]' - recorded_at: Tue, 25 Jun 2024 12:01:28 GMT + recorded_at: Tue, 20 Aug 2024 12:21:31 GMT - request: method: get uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA @@ -859,14 +742,14 @@ http_interactions: string: '' headers: User-Agent: - - Faraday v2.9.2 + - Faraday v2.10.1 response: status: code: 200 message: OK headers: date: - - Tue, 25 Jun 2024 12:01:29 GMT + - Tue, 20 Aug 2024 12:21:32 GMT content-type: - application/json;charset=UTF-8 transfer-encoding: @@ -888,11 +771,10 @@ http_interactions: string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"110\",\r\n \"lastupdate\" - : \"2024-06-24\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" + : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"112\",\r\n \"lastupdate\" + : \"2024-08-19\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n + : \"23749699\",\r\n \"ADDRESS\" : \"84, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n @@ -985,5 +867,5 @@ http_interactions: \ \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n \"LANGUAGE\" : \"EN\",\r\n \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Tue, 25 Jun 2024 12:01:29 GMT + recorded_at: Tue, 20 Aug 2024 12:21:32 GMT recorded_with: VCR 6.2.0 diff --git a/features/cassettes/partner_means_assessment_with_a_different_address/I_am_able_to_add_a_partner_with_a_different_address_from_the_applicant.yml b/features/cassettes/partner_means_assessment_with_a_different_address/I_am_able_to_add_a_partner_with_a_different_address_from_the_applicant.yml deleted file mode 100644 index cf3bd2afba..0000000000 --- a/features/cassettes/partner_means_assessment_with_a_different_address/I_am_able_to_add_a_partner_with_a_different_address_from_the_applicant.yml +++ /dev/null @@ -1,867 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:46 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"99\",\r\n \"lastupdate\" - : \"2023-03-27\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 27 Mar 2023 15:23:46 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:46 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - b814bc656002d56551e085443204e7c6 - X-Runtime: - - '0.021526' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court injunction","description":"to - be represented on an application for an injunction, order or declaration under - the inherent jurisdiction of the court.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"}]' - recorded_at: Mon, 27 Mar 2023 15:23:46 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:47 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 22b0266a4ac71ba1758b71ceb90a83a9 - X-Runtime: - - '0.024257' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court injunction","description":"to - be represented on an application for an injunction, order or declaration under - the inherent jurisdiction of the court.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"}]' - recorded_at: Mon, 27 Mar 2023 15:23:47 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:47 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - ba158bab28ace2d8c5c9cb88d6c978f9 - X-Runtime: - - '0.009044' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 27 Mar 2023 15:23:47 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:48 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 7bfdf4450d9d52d6d42aea5ec85b4aa1 - X-Runtime: - - '0.004997' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 27 Mar 2023 15:23:48 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:48 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 8e375f63cd6c0aeca3fa7f882c5d8a03 - X-Runtime: - - '0.004440' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 27 Mar 2023 15:23:48 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:49 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '708' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"05375658d64485716c2575dd3e911e59" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c4c2386b2d7cffe6dc075e5a1dfc96de - X-Runtime: - - '0.010063' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full - Representation","stage":8},"default_scope":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings).","additional_params":[]}}' - recorded_at: Mon, 27 Mar 2023 15:23:49 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:49 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '708' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"05375658d64485716c2575dd3e911e59" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 0c23e779166848218efc2cc7928d9424 - X-Runtime: - - '0.011561' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full - Representation","stage":8},"default_scope":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings).","additional_params":[]}}' - recorded_at: Mon, 27 Mar 2023 15:23:49 GMT -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1A2AA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:23:52 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1A2AA\",\r\n - \ \"query\" : \"postcode=SW1A2AA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 1,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"99\",\r\n \"lastupdate\" - : \"2023-03-27\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023336956\",\r\n \"UDPRN\" - : \"23747771\",\r\n \"ADDRESS\" : \"PRIME MINISTER & FIRST LORD OF THE - TREASURY, 10, DOWNING STREET, LONDON, SW1A 2AA\",\r\n \"ORGANISATION_NAME\" - : \"PRIME MINISTER & FIRST LORD OF THE TREASURY\",\r\n \"BUILDING_NUMBER\" - : \"10\",\r\n \"THOROUGHFARE_NAME\" : \"DOWNING STREET\",\r\n \"POST_TOWN\" - : \"LONDON\",\r\n \"POSTCODE\" : \"SW1A 2AA\",\r\n \"RPC\" : \"2\",\r\n - \ \"X_COORDINATE\" : 530047.0,\r\n \"Y_COORDINATE\" : 179951.0,\r\n - \ \"STATUS\" : \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n - \ \"CLASSIFICATION_CODE\" : \"RD04\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" - : \"Terraced\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000005572568\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/11/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 27 Mar 2023 15:23:51 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/partner_means_assessment_with_a_shared_address/I_am_able_to_add_a_partner_with_an_address_shared_with_the_applicant.yml b/features/cassettes/partner_means_assessment_with_a_shared_address/I_am_able_to_add_a_partner_with_an_address_shared_with_the_applicant.yml deleted file mode 100644 index 135104c8fa..0000000000 --- a/features/cassettes/partner_means_assessment_with_a_shared_address/I_am_able_to_add_a_partner_with_an_address_shared_with_the_applicant.yml +++ /dev/null @@ -1,802 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:15:04 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"99\",\r\n \"lastupdate\" - : \"2023-03-27\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 27 Mar 2023 15:15:04 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:15:05 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - cc2258630dd94fecd5d39d7d65ae0522 - X-Runtime: - - '0.026842' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court injunction","description":"to - be represented on an application for an injunction, order or declaration under - the inherent jurisdiction of the court.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"}]' - recorded_at: Mon, 27 Mar 2023 15:15:04 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:15:06 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - be07f92d3fa18a1ae904db2fb169b726 - X-Runtime: - - '0.022069' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court injunction","description":"to - be represented on an application for an injunction, order or declaration under - the inherent jurisdiction of the court.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"}]' - recorded_at: Mon, 27 Mar 2023 15:15:06 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:15:06 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - d2060af462636fc674319e81649dcd48 - X-Runtime: - - '0.009702' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 27 Mar 2023 15:15:06 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:15:07 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c773013b0b4d40c2415da8be61ca7526 - X-Runtime: - - '0.004766' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 27 Mar 2023 15:15:06 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:15:07 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 9aae0e89e3ade64304b5f07e360f8dcc - X-Runtime: - - '0.003368' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 27 Mar 2023 15:15:07 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:15:07 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '708' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"05375658d64485716c2575dd3e911e59" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - ea1f9c420536d5310cbd988396ee1c07 - X-Runtime: - - '0.008173' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full - Representation","stage":8},"default_scope":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings).","additional_params":[]}}' - recorded_at: Mon, 27 Mar 2023 15:15:07 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:15:08 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '708' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"05375658d64485716c2575dd3e911e59" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 64b00dcf456bd942f74d4299e0bfcd5e - X-Runtime: - - '0.007386' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full - Representation","stage":8},"default_scope":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings).","additional_params":[]}}' - recorded_at: Mon, 27 Mar 2023 15:15:08 GMT -recorded_with: VCR 6.1.0 diff --git a/features/cassettes/partner_means_assessment_with_an_unknown_address/I_am_able_to_add_a_partner_with_a_different_address_from_the_applicant.yml b/features/cassettes/partner_means_assessment_with_an_unknown_address/I_am_able_to_add_a_partner_with_a_different_address_from_the_applicant.yml deleted file mode 100644 index c9a60cabda..0000000000 --- a/features/cassettes/partner_means_assessment_with_an_unknown_address/I_am_able_to_add_a_partner_with_a_different_address_from_the_applicant.yml +++ /dev/null @@ -1,848 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1H9EA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:05 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1H9EA\",\r\n - \ \"query\" : \"postcode=SW1H9EA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 5,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"99\",\r\n \"lastupdate\" - : \"2023-03-27\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n },\r\n \"results\" - : [ {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337883\",\r\n \"UDPRN\" - : \"23749699\",\r\n \"ADDRESS\" : \"SUPER FIRM LTD, 84, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"SUPER FIRM LTD\",\r\n - \ \"BUILDING_NUMBER\" : \"84\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529526.39,\r\n - \ \"Y_COORDINATE\" : 179490.43,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CR07\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Restaurant / Cafeteria\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216527\",\r\n - \ \"LAST_UPDATE_DATE\" : \"10/02/2016\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1B\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033650067\",\r\n - \ \"UDPRN\" : \"56825040\",\r\n \"ADDRESS\" : \"BRITISH TRANSPORT - POLICE, 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" - : \"BRITISH TRANSPORT POLICE\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n - \ \"THOROUGHFARE_NAME\" : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n - \ \"POSTCODE\" : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" - : 529558.47,\r\n \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : - \"APPROVED\",\r\n \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" - : \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work - Studio\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"PARENT_UPRN\" : \"100023337884\",\r\n \"LAST_UPDATE_DATE\" : - \"14/02/2022\",\r\n \"ENTRY_DATE\" : \"19/03/2021\",\r\n \"BLPU_STATE_DATE\" - : \"19/03/2021\",\r\n \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n - \ \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1Q\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337884\",\r\n - \ \"UDPRN\" : \"23749702\",\r\n \"ADDRESS\" : \"TRANSPORT FOR LONDON, - 98, PETTY FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"TRANSPORT - FOR LONDON\",\r\n \"BUILDING_NUMBER\" : \"98\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"1\",\r\n \"X_COORDINATE\" : 529558.47,\r\n - \ \"Y_COORDINATE\" : 179482.17,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"PP\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Property Shell\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042217066\",\r\n - \ \"LAST_UPDATE_DATE\" : \"30/03/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1F\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"100023337882\",\r\n - \ \"UDPRN\" : \"23749700\",\r\n \"ADDRESS\" : \"100, PETTY FRANCE, - LONDON, SW1H 9EA\",\r\n \"BUILDING_NUMBER\" : \"100\",\r\n \"THOROUGHFARE_NAME\" - : \"PETTY FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" - : \"SW1H 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529619.99,\r\n - \ \"Y_COORDINATE\" : 179499.2,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CT08\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Station / Interchange - / Terminal / Halt\",\r\n \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000042216526\",\r\n - \ \"LAST_UPDATE_DATE\" : \"24/08/2021\",\r\n \"ENTRY_DATE\" : \"19/03/2001\",\r\n - \ \"BLPU_STATE_DATE\" : \"19/03/2001\",\r\n \"LANGUAGE\" : \"EN\",\r\n - \ \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" - : \"1A\"\r\n }\r\n }, {\r\n \"DPA\" : {\r\n \"UPRN\" : \"10033648845\",\r\n - \ \"UDPRN\" : \"54770395\",\r\n \"ADDRESS\" : \"C P S, 102, PETTY - FRANCE, LONDON, SW1H 9EA\",\r\n \"ORGANISATION_NAME\" : \"C P S\",\r\n - \ \"BUILDING_NUMBER\" : \"102\",\r\n \"THOROUGHFARE_NAME\" : \"PETTY - FRANCE\",\r\n \"POST_TOWN\" : \"LONDON\",\r\n \"POSTCODE\" : \"SW1H - 9EA\",\r\n \"RPC\" : \"2\",\r\n \"X_COORDINATE\" : 529576.0,\r\n - \ \"Y_COORDINATE\" : 179549.0,\r\n \"STATUS\" : \"APPROVED\",\r\n - \ \"LOGICAL_STATUS_CODE\" : \"1\",\r\n \"CLASSIFICATION_CODE\" : - \"CO01\",\r\n \"CLASSIFICATION_CODE_DESCRIPTION\" : \"Office / Work Studio\",\r\n - \ \"LOCAL_CUSTODIAN_CODE\" : 5990,\r\n \"LOCAL_CUSTODIAN_CODE_DESCRIPTION\" - : \"CITY OF WESTMINSTER\",\r\n \"COUNTRY_CODE\" : \"E\",\r\n \"COUNTRY_CODE_DESCRIPTION\" - : \"This record is within England\",\r\n \"POSTAL_ADDRESS_CODE\" : \"D\",\r\n - \ \"POSTAL_ADDRESS_CODE_DESCRIPTION\" : \"A record which is linked to - PAF\",\r\n \"BLPU_STATE_CODE\" : \"2\",\r\n \"BLPU_STATE_CODE_DESCRIPTION\" - : \"In use\",\r\n \"TOPOGRAPHY_LAYER_TOID\" : \"osgb1000001796535716\",\r\n - \ \"PARENT_UPRN\" : \"10033604583\",\r\n \"LAST_UPDATE_DATE\" : \"06/07/2020\",\r\n - \ \"ENTRY_DATE\" : \"15/06/2020\",\r\n \"BLPU_STATE_DATE\" : \"15/06/2020\",\r\n - \ \"LANGUAGE\" : \"EN\",\r\n \"MATCH\" : 1.0,\r\n \"MATCH_DESCRIPTION\" - : \"EXACT\",\r\n \"DELIVERY_POINT_SUFFIX\" : \"1N\"\r\n }\r\n } ]\r\n}" - recorded_at: Mon, 27 Mar 2023 15:27:05 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:06 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 3611978cafa8c2c4904ae6dfbb48a53e - X-Runtime: - - '0.024772' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court injunction","description":"to - be represented on an application for an injunction, order or declaration under - the inherent jurisdiction of the court.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"}]' - recorded_at: Mon, 27 Mar 2023 15:27:06 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/all - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:07 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '12573' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"dd6907b8448bc8458adb599124824756" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - afb6d9f70d5f60176bc52b81c4f43df8 - X-Runtime: - - '0.032656' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"DA001","meaning":"Inherent jurisdiction high court injunction","description":"to - be represented on an application for an injunction, order or declaration under - the inherent jurisdiction of the court.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE095","meaning":"Enforcement order 11J-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015A","meaning":"Vary CAO contact-Appeal","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA004","meaning":"Non-molestation order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014E","meaning":"CAO residence-Enforcement","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004A","meaning":"Specific Issue Order-Appeal-S8","description":"to - be represented on an application for a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA005","meaning":"Occupation order","description":"to - be represented on an application for an occupation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE014A","meaning":"CAO residence-Appeal","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013E","meaning":"CAO contact-Enforcement","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE095A","meaning":"Enforcement order-Appeal-S8","description":"to - be represented on an application for an enforcement order under section 11J - Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097A","meaning":"Revocation enforcement-Appeal-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE099E","meaning":"Amd enforcement-breach-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004E","meaning":"Specific Issue Order-Enforcement-S8","description":"to - be represented on an application for a specific issue order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA020","meaning":"FGM Protection Order","description":"To - be represented on an application for a Female Genital Mutilation Protection - Order under the Female Genital Mutilation Act.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE101E","meaning":"Compensation-Enforcement-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016","meaning":"Vary CAO residence","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016E","meaning":"Vary CAO residence-Enforcement","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE004","meaning":"Specific Issue Order","description":"to - be represented on an application for a specific issue order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE097","meaning":"Revocation enforcement-S8","description":"to - be represented on an application for the revocation of an enforcement order - under section 11J and Schedule A1 Children Act 1989.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE003","meaning":"Prohibited steps order","description":"to - be represented on an application for a prohibited steps order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013A","meaning":"CAO contact-Appeal","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007A","meaning":"Vary/Discharge Prohib Steps - Order-Appeal-S8","description":"to be represented on an application to vary - or discharge a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE100E","meaning":"Breach enforcement-S8","description":"to - be represented on an application, following breach, for an amendment to an - enforcement order or for a further enforcement order under section 11J and - Schedule A1 Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015","meaning":"Vary CAO contact","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008","meaning":"Vary/Discharge Specific Issues - Ord-S8","description":"to be represented on an application to vary or discharge - a specific issue order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA003","meaning":"Harassment - injunction","description":"to - be represented in an action for an injunction under section 3 Protection from - Harassment Act 1997.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003E","meaning":"Prohibited Steps Order-Enforcement-S8","description":"to - be represented on an application for a prohibited steps order. Enforcement - only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE015E","meaning":"Vary CAO contact-Enforcement","description":"to - be represented on an application to vary/discharge a child arrangements order-who - the child(ren) spend time with. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007","meaning":"Vary/Discharge Prohib Steps - Order-S8","description":"to be represented on an application to vary or discharge - a prohibited steps order.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE007E","meaning":"Vary/Discharge Prohib Steps - Order-Enforcement-S8","description":"to be represented on an application to - vary or discharge a prohibited steps order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE013","meaning":"Child arrangements order (contact)","description":"to - be represented on an application for a child arrangements order-who the child(ren) - spend time with.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008A","meaning":"Vary/Discharge Specific Issues - Ord-Appeal-S8","description":"to be represented on an application to vary - or discharge a specific issue order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE101A","meaning":"Compensation-Appeal-S8","description":"to - be represented on an application for compensation for financial loss under - section 11O Children Act 1989. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA006","meaning":"Extend, variation or discharge - - Part IV","description":"to be represented on an application to extend, vary - or discharge an order under Part IV Family Law Act 1996","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE003A","meaning":"Prohibited Steps Order-Appeal-S8","description":"to - be represented on an application for a prohibited steps order. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE014","meaning":"Child arrangements order (residence)","description":"to - be represented on an application for a child arrangements order –where the - child(ren) will live","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE008E","meaning":"Vary/Discharge Specific Issues - Ord-Enforcement-S8","description":"to be represented on an application to - vary or discharge a specific issue order. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA002","meaning":"Variation or discharge under - section 5 protection from harassment act 1997","description":"to be represented - on an application to vary or discharge an order under section 5 Protection - from Harassment Act 1997 where the parties are associated persons (as defined - by Part IV Family Law Act 1996).","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"},{"ccms_code":"SE096E","meaning":"Enforcement order+c’tal-S8","description":"to - be represented on an application for committal and for an enforcement order - under section 11J Children Act 1989. Enforcement only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"SE016A","meaning":"Vary CAO residence-Appeal","description":"to - be represented on an application to vary or discharge a child arrangements - order –where the child(ren) will live. Appeals only.","full_s8_only":true,"ccms_category_law":"Family","ccms_matter_code":"KSEC8","ccms_matter":"Children - - section 8"},{"ccms_code":"DA007","meaning":"Forced marriage protection order","description":"to - be represented on an application for a forced marriage protection order","full_s8_only":false,"ccms_category_law":"Family","ccms_matter_code":"MINJN","ccms_matter":"Domestic - abuse"}]' - recorded_at: Mon, 27 Mar 2023 15:27:07 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_types/DA004 - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:07 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '1310' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"fbabf0efd65b63f03290a3f99682b0d4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - d3d597ee80b18f5a0b52b591d86d7c76 - X-Runtime: - - '0.012482' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"ccms_code":"DA004","meaning":"Non-molestation order","ccms_category_law_code":"MAT","ccms_matter_code":"MINJN","name":"nonmolestation_order","description":"to - be represented on an application for a non-molestation order.","full_s8_only":false,"ccms_category_law":"Family","ccms_matter":"Domestic - abuse","cost_limitations":{"substantive":{"start_date":"1970-01-01","value":"25000.0"},"delegated_functions":{"start_date":"2021-09-13","value":"2250.0"}},"default_scope_limitations":{"substantive":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings)."},"delegated_functions":{"code":"CV117","meaning":"Interim - order inc. return date","description":"Limited to all steps necessary to apply - for an interim order; where application is made without notice to include - representation on the return date."}},"service_levels":[{"level":3,"name":"Full - Representation","stage":8,"proceeding_default":true}]}' - recorded_at: Mon, 27 Mar 2023 15:27:07 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:08 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 07b7b641c2841ed4127b84f37a6f7c7c - X-Runtime: - - '0.004224' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 27 Mar 2023 15:27:08 GMT -- request: - method: get - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/client_involvement_types - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:08 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '277' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"8bf337339345d42d16a9e6062fb65ccf" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 1493260b7e5858a080c8a4ade8bf2c75 - X-Runtime: - - '0.003546' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '[{"ccms_code":"A","description":"Applicant/claimant/petitioner"},{"ccms_code":"D","description":"Defendant/respondent"},{"ccms_code":"W","description":"Subject - of proceedings (child)"},{"ccms_code":"I","description":"Intervenor"},{"ccms_code":"Z","description":"Joined - party"}]' - recorded_at: Mon, 27 Mar 2023 15:27:08 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:09 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '708' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"05375658d64485716c2575dd3e911e59" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - f9b32d3df592b3b7de31ee3b1de46354 - X-Runtime: - - '0.012693' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full - Representation","stage":8},"default_scope":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings).","additional_params":[]}}' - recorded_at: Mon, 27 Mar 2023 15:27:09 GMT -- request: - method: post - uri: https://legal-framework-api-staging.cloud-platform.service.justice.gov.uk/proceeding_type_defaults - body: - encoding: UTF-8 - string: '{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"}' - headers: - Content-Type: - - application/json - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:09 GMT - Content-Type: - - application/json; charset=utf-8 - Content-Length: - - '708' - Connection: - - keep-alive - X-Frame-Options: - - SAMEORIGIN - X-Xss-Protection: - - 1; mode=block - X-Content-Type-Options: - - nosniff - X-Download-Options: - - noopen - X-Permitted-Cross-Domain-Policies: - - none - Referrer-Policy: - - strict-origin-when-cross-origin - Etag: - - W/"05375658d64485716c2575dd3e911e59" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 24e2f8b96661146c7a92bca5cb8c30d7 - X-Runtime: - - '0.010389' - Vary: - - Accept, Origin - Strict-Transport-Security: - - max-age=15724800; includeSubDomains - body: - encoding: UTF-8 - string: '{"success":true,"requested_params":{"proceeding_type_ccms_code":"DA004","delegated_functions_used":false,"client_involvement_type":"A"},"default_level_of_service":{"level":3,"name":"Full - Representation","stage":8},"default_scope":{"code":"AA019","meaning":"Injunction - FLA-to final hearing","description":"As to proceedings under Part IV Family - Law Act 1996 limited to all steps up to and including obtaining and serving - a final order and in the event of breach leading to the exercise of a power - of arrest to representation on the consideration of the breach by the court - (but excluding applying for a warrant of arrest, if not attached, and representation - in contempt proceedings).","additional_params":[]}}' - recorded_at: Mon, 27 Mar 2023 15:27:09 GMT -- request: - method: get - uri: https://api.os.uk/search/places/v1/postcode?key=&lr=EN&postcode=SW1A3AA - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Faraday v2.7.4 - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 200 - message: OK - headers: - Date: - - Mon, 27 Mar 2023 15:27:11 GMT - Content-Type: - - application/json;charset=UTF-8 - Transfer-Encoding: - - chunked - Connection: - - keep-alive - Request-Context: - - appId=cid-v1:cd7023ed-37c2-4bb3-b1f3-cd441a39a9ae - Vary: - - Origin,Accept-Encoding,key - Omse-Category: - - premium - Omse-Transaction-Count: - - '60' - Omse-Premium-Count: - - '0' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - body: - encoding: ASCII-8BIT - string: "{\r\n \"header\" : {\r\n \"uri\" : \"https://api.os.uk/search/places/v1/postcode?lr=EN&postcode=SW1A3AA\",\r\n - \ \"query\" : \"postcode=SW1A3AA\",\r\n \"offset\" : 0,\r\n \"totalresults\" - : 0,\r\n \"format\" : \"JSON\",\r\n \"dataset\" : \"DPA\",\r\n \"lr\" - : \"EN\",\r\n \"maxresults\" : 100,\r\n \"epoch\" : \"99\",\r\n \"lastupdate\" - : \"2023-03-27\",\r\n \"output_srs\" : \"EPSG:27700\"\r\n }\r\n}" - recorded_at: Mon, 27 Mar 2023 15:27:11 GMT -recorded_with: VCR 6.1.0